gitextract_iares_uf/ ├── .clang-format ├── .clang-tidy ├── .github/ │ ├── conan/ │ │ ├── conanfile.py │ │ └── profiles/ │ │ ├── clangcl │ │ └── msvc │ └── workflows/ │ ├── clang-analyze.yml │ ├── clang-format.yml │ ├── clang-tidy.yml │ ├── code-coverage.yml │ ├── linux.yml │ ├── macos.yml │ ├── sanitizer.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE_1_0.txt ├── Makefile ├── README.md ├── doc/ │ ├── Aggregate-Support.md │ ├── Binary-Data.md │ ├── Bulk-Transfer.md │ ├── Connection-Pool.md │ ├── Connection.md │ ├── Error-Handling.md │ ├── Getting-Started.md │ ├── Installation.md │ ├── Large-Object.md │ ├── Parameter-Type-Conversion.md │ ├── Performance.md │ ├── Requirements.md │ ├── Result-Type-Conversion.md │ ├── Result.md │ ├── Statement.md │ ├── TOC.md │ └── Transaction.md ├── example/ │ ├── CMakeLists.txt │ └── get_version/ │ ├── CMakeLists.txt │ └── main.cpp ├── include/ │ └── tao/ │ ├── pq/ │ │ ├── access_mode.hpp │ │ ├── binary.hpp │ │ ├── bind.hpp │ │ ├── connection.hpp │ │ ├── connection_pool.hpp │ │ ├── connection_status.hpp │ │ ├── exception.hpp │ │ ├── field.hpp │ │ ├── internal/ │ │ │ ├── aggregate.hpp │ │ │ ├── demangle.hpp │ │ │ ├── exclusive_scan.hpp │ │ │ ├── format_as.hpp │ │ │ ├── from_chars.hpp │ │ │ ├── gen.hpp │ │ │ ├── parameter_traits_helper.hpp │ │ │ ├── poll.hpp │ │ │ ├── pool.hpp │ │ │ ├── resize_uninitialized.hpp │ │ │ ├── strtox.hpp │ │ │ ├── unreachable.hpp │ │ │ └── zsv.hpp │ │ ├── is_aggregate.hpp │ │ ├── is_array.hpp │ │ ├── isolation_level.hpp │ │ ├── large_object.hpp │ │ ├── log.hpp │ │ ├── notification.hpp │ │ ├── null.hpp │ │ ├── oid.hpp │ │ ├── parameter.hpp │ │ ├── parameter_traits.hpp │ │ ├── parameter_traits_aggregate.hpp │ │ ├── parameter_traits_array.hpp │ │ ├── parameter_traits_optional.hpp │ │ ├── parameter_traits_pair.hpp │ │ ├── parameter_traits_tuple.hpp │ │ ├── pipeline.hpp │ │ ├── pipeline_status.hpp │ │ ├── poll.hpp │ │ ├── result.hpp │ │ ├── result_status.hpp │ │ ├── result_traits.hpp │ │ ├── result_traits_aggregate.hpp │ │ ├── result_traits_array.hpp │ │ ├── result_traits_optional.hpp │ │ ├── result_traits_pair.hpp │ │ ├── result_traits_tuple.hpp │ │ ├── row.hpp │ │ ├── table_field.hpp │ │ ├── table_reader.hpp │ │ ├── table_row.hpp │ │ ├── table_writer.hpp │ │ ├── transaction.hpp │ │ ├── transaction_base.hpp │ │ ├── transaction_status.hpp │ │ └── version.hpp │ └── pq.hpp ├── src/ │ └── lib/ │ └── pq/ │ ├── connection.cpp │ ├── connection_pool.cpp │ ├── exception.cpp │ ├── field.cpp │ ├── internal/ │ │ ├── demangle.cpp │ │ ├── poll.cpp │ │ └── strtox.cpp │ ├── large_object.cpp │ ├── parameter_traits.cpp │ ├── pipeline.cpp │ ├── result.cpp │ ├── result_traits.cpp │ ├── result_traits_array.cpp │ ├── row.cpp │ ├── table_field.cpp │ ├── table_reader.cpp │ ├── table_row.cpp │ ├── table_writer.cpp │ ├── transaction.cpp │ └── transaction_base.cpp └── test/ ├── CMakeLists.txt ├── integration/ │ ├── aggregate.cpp │ ├── array.cpp │ ├── basic_datatypes.cpp │ ├── chunk_mode.cpp │ ├── connection.cpp │ ├── connection_pool.cpp │ ├── example.cpp │ ├── exception.cpp │ ├── large_object.cpp │ ├── log.cpp │ ├── notifications.cpp │ ├── parameter.cpp │ ├── password.cpp │ ├── pipeline_mode.cpp │ ├── result.cpp │ ├── row.cpp │ ├── single_row_mode.cpp │ ├── table_reader.cpp │ ├── table_writer.cpp │ ├── traits.cpp │ └── transaction.cpp ├── unit/ │ ├── getenv.cpp │ ├── parameter_type.cpp │ ├── resize_uninitialized.cpp │ ├── result_type.cpp │ └── strtox.cpp └── utils/ ├── compare.hpp ├── getenv.hpp └── macros.hpp