├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml └── workflows │ ├── InternalIssuesCreateMirror.yml │ ├── InternalIssuesUpdateMirror.yml │ ├── Linux.yml │ └── MainDistributionPipeline.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── concurrency_test.cpp ├── create-postgres-tables.sh ├── extension_config.cmake ├── include └── pg_config_paths.h ├── scripts └── extension-upload.sh ├── src ├── CMakeLists.txt ├── include │ ├── postgres_binary_copy.hpp │ ├── postgres_binary_reader.hpp │ ├── postgres_binary_writer.hpp │ ├── postgres_connection.hpp │ ├── postgres_conversion.hpp │ ├── postgres_filter_pushdown.hpp │ ├── postgres_result.hpp │ ├── postgres_result_reader.hpp │ ├── postgres_scanner.hpp │ ├── postgres_scanner_extension.hpp │ ├── postgres_storage.hpp │ ├── postgres_text_reader.hpp │ ├── postgres_text_writer.hpp │ ├── postgres_type_oids.hpp │ ├── postgres_utils.hpp │ ├── postgres_version.hpp │ └── storage │ │ ├── postgres_catalog.hpp │ │ ├── postgres_catalog_set.hpp │ │ ├── postgres_connection_pool.hpp │ │ ├── postgres_delete.hpp │ │ ├── postgres_index.hpp │ │ ├── postgres_index_entry.hpp │ │ ├── postgres_index_set.hpp │ │ ├── postgres_insert.hpp │ │ ├── postgres_optimizer.hpp │ │ ├── postgres_schema_entry.hpp │ │ ├── postgres_schema_set.hpp │ │ ├── postgres_table_entry.hpp │ │ ├── postgres_table_set.hpp │ │ ├── postgres_transaction.hpp │ │ ├── postgres_transaction_manager.hpp │ │ ├── postgres_type_entry.hpp │ │ ├── postgres_type_set.hpp │ │ └── postgres_update.hpp ├── postgres_attach.cpp ├── postgres_binary_copy.cpp ├── postgres_binary_reader.cpp ├── postgres_connection.cpp ├── postgres_copy_from.cpp ├── postgres_copy_to.cpp ├── postgres_execute.cpp ├── postgres_extension.cpp ├── postgres_filter_pushdown.cpp ├── postgres_query.cpp ├── postgres_scanner.cpp ├── postgres_storage.cpp ├── postgres_text_reader.cpp ├── postgres_utils.cpp └── storage │ ├── CMakeLists.txt │ ├── postgres_catalog.cpp │ ├── postgres_catalog_set.cpp │ ├── postgres_clear_cache.cpp │ ├── postgres_connection_pool.cpp │ ├── postgres_delete.cpp │ ├── postgres_index.cpp │ ├── postgres_index_entry.cpp │ ├── postgres_index_set.cpp │ ├── postgres_insert.cpp │ ├── postgres_merge_into.cpp │ ├── postgres_optimizer.cpp │ ├── postgres_schema_entry.cpp │ ├── postgres_schema_set.cpp │ ├── postgres_table_entry.cpp │ ├── postgres_table_set.cpp │ ├── postgres_transaction.cpp │ ├── postgres_transaction_manager.cpp │ ├── postgres_type_entry.cpp │ ├── postgres_type_set.cpp │ └── postgres_update.cpp ├── test ├── all_pg_types.sql ├── configs │ └── attach_postgres.json ├── create-decimal-tables.py ├── decimals.sql ├── other.sql └── sql │ ├── misc │ ├── autoload.test │ └── postgres_binary.test │ ├── scanner │ ├── arrays.test │ ├── aws-rds.test │ ├── bug63.test │ ├── bug69.test │ ├── bug71.test │ ├── bug74.test │ ├── bug76.test │ ├── bug77.test │ ├── count_star.test │ ├── daterange_array.test │ ├── decimals.test │ ├── interval.test │ ├── missing_table.test │ ├── nulls.test │ ├── postgres_query.test │ ├── postgres_query_error.test │ ├── ssl.test │ ├── tpcds.test │ ├── tpch.test │ └── types.test │ └── storage │ ├── attach_alter.test │ ├── attach_alter_rollback.test │ ├── attach_backslash.test │ ├── attach_case_sensitive_columns.test │ ├── attach_case_sensitive_tables.test │ ├── attach_checkpoint.test │ ├── attach_concurrent_queries.test │ ├── attach_connection_pool.test │ ├── attach_constraints.test │ ├── attach_copy_from_database.test │ ├── attach_create_if_exists.test │ ├── attach_create_index.test │ ├── attach_create_uppercase_names.test │ ├── attach_database_list.test │ ├── attach_database_size.test │ ├── attach_defaults.test │ ├── attach_delete.test │ ├── attach_describe.test │ ├── attach_detach.test │ ├── attach_drop.test │ ├── attach_existing_constraints.test │ ├── attach_existing_enum.test │ ├── attach_existing_multidimensional_array.test │ ├── attach_explicit_schema.test │ ├── attach_external_access.test │ ├── attach_filter_pushdown.test │ ├── attach_geometry.test │ ├── attach_giant_numeric.test │ ├── attach_if_not_exists.test │ ├── attach_insert_from_scan_large.test │ ├── attach_isolation_level.test │ ├── attach_issue_146.test │ ├── attach_json.test │ ├── attach_keywords.test │ ├── attach_large_delete.test │ ├── attach_list_tables.test │ ├── attach_main_schema.test │ ├── attach_merge.test │ ├── attach_multi_join.test │ ├── attach_multi_join_large.test_slow │ ├── attach_non_existent.test │ ├── attach_null_byte.test │ ├── attach_on_conflict.test │ ├── attach_pages_per_task.test │ ├── attach_postgis.test │ ├── attach_postgres_execute.test │ ├── attach_prefix.test │ ├── attach_read_only.test │ ├── attach_schema_param.test │ ├── attach_schemas.test │ ├── attach_secret.test │ ├── attach_show_all_tables.test │ ├── attach_simple.test │ ├── attach_temporary_table.test │ ├── attach_text_array.test │ ├── attach_timeout_error.test │ ├── attach_top_n.test │ ├── attach_transactions.test │ ├── attach_types.test │ ├── attach_types_blob.test │ ├── attach_types_char.test │ ├── attach_types_complex_composite.test │ ├── attach_types_date.test │ ├── attach_types_decimal.test │ ├── attach_types_enum.test │ ├── attach_types_interval.test │ ├── attach_types_json.test │ ├── attach_types_lists.test │ ├── attach_types_macaddr.test │ ├── attach_types_multidimensional_array.test │ ├── attach_types_numerics.test │ ├── attach_types_struct.test │ ├── attach_types_time.test │ ├── attach_types_timestamp.test │ ├── attach_types_uuid.test │ ├── attach_types_varchar.test │ ├── attach_ubigint.test │ ├── attach_update.test │ ├── attach_upper_case.test │ ├── attach_use_binary_copy.test │ ├── attach_varchar_list_nulls.test │ ├── attach_verify_big_table.test_slow │ ├── attach_views.test │ ├── bug136.test │ ├── limit.test │ ├── postgres_execute_transaction.test │ ├── postgres_execute_use_transaction.test │ └── postgres_query_use_transaction.test └── vcpkg.json /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/workflows/InternalIssuesCreateMirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.github/workflows/InternalIssuesCreateMirror.yml -------------------------------------------------------------------------------- /.github/workflows/InternalIssuesUpdateMirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.github/workflows/InternalIssuesUpdateMirror.yml -------------------------------------------------------------------------------- /.github/workflows/Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.github/workflows/Linux.yml -------------------------------------------------------------------------------- /.github/workflows/MainDistributionPipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.github/workflows/MainDistributionPipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/README.md -------------------------------------------------------------------------------- /concurrency_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/concurrency_test.cpp -------------------------------------------------------------------------------- /create-postgres-tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/create-postgres-tables.sh -------------------------------------------------------------------------------- /extension_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/extension_config.cmake -------------------------------------------------------------------------------- /include/pg_config_paths.h: -------------------------------------------------------------------------------- 1 | #define SYSCONFDIR "" -------------------------------------------------------------------------------- /scripts/extension-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/scripts/extension-upload.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/postgres_binary_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_binary_copy.hpp -------------------------------------------------------------------------------- /src/include/postgres_binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_binary_reader.hpp -------------------------------------------------------------------------------- /src/include/postgres_binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_binary_writer.hpp -------------------------------------------------------------------------------- /src/include/postgres_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_connection.hpp -------------------------------------------------------------------------------- /src/include/postgres_conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_conversion.hpp -------------------------------------------------------------------------------- /src/include/postgres_filter_pushdown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_filter_pushdown.hpp -------------------------------------------------------------------------------- /src/include/postgres_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_result.hpp -------------------------------------------------------------------------------- /src/include/postgres_result_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_result_reader.hpp -------------------------------------------------------------------------------- /src/include/postgres_scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_scanner.hpp -------------------------------------------------------------------------------- /src/include/postgres_scanner_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_scanner_extension.hpp -------------------------------------------------------------------------------- /src/include/postgres_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_storage.hpp -------------------------------------------------------------------------------- /src/include/postgres_text_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_text_reader.hpp -------------------------------------------------------------------------------- /src/include/postgres_text_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_text_writer.hpp -------------------------------------------------------------------------------- /src/include/postgres_type_oids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_type_oids.hpp -------------------------------------------------------------------------------- /src/include/postgres_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_utils.hpp -------------------------------------------------------------------------------- /src/include/postgres_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/postgres_version.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_catalog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_catalog.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_catalog_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_catalog_set.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_connection_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_connection_pool.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_delete.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_index.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_index_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_index_entry.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_index_set.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_insert.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_optimizer.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_schema_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_schema_entry.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_schema_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_schema_set.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_table_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_table_entry.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_table_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_table_set.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_transaction.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_transaction_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_transaction_manager.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_type_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_type_entry.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_type_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_type_set.hpp -------------------------------------------------------------------------------- /src/include/storage/postgres_update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/include/storage/postgres_update.hpp -------------------------------------------------------------------------------- /src/postgres_attach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_attach.cpp -------------------------------------------------------------------------------- /src/postgres_binary_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_binary_copy.cpp -------------------------------------------------------------------------------- /src/postgres_binary_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_binary_reader.cpp -------------------------------------------------------------------------------- /src/postgres_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_connection.cpp -------------------------------------------------------------------------------- /src/postgres_copy_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_copy_from.cpp -------------------------------------------------------------------------------- /src/postgres_copy_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_copy_to.cpp -------------------------------------------------------------------------------- /src/postgres_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_execute.cpp -------------------------------------------------------------------------------- /src/postgres_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_extension.cpp -------------------------------------------------------------------------------- /src/postgres_filter_pushdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_filter_pushdown.cpp -------------------------------------------------------------------------------- /src/postgres_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_query.cpp -------------------------------------------------------------------------------- /src/postgres_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_scanner.cpp -------------------------------------------------------------------------------- /src/postgres_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_storage.cpp -------------------------------------------------------------------------------- /src/postgres_text_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_text_reader.cpp -------------------------------------------------------------------------------- /src/postgres_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/postgres_utils.cpp -------------------------------------------------------------------------------- /src/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/CMakeLists.txt -------------------------------------------------------------------------------- /src/storage/postgres_catalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_catalog.cpp -------------------------------------------------------------------------------- /src/storage/postgres_catalog_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_catalog_set.cpp -------------------------------------------------------------------------------- /src/storage/postgres_clear_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_clear_cache.cpp -------------------------------------------------------------------------------- /src/storage/postgres_connection_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_connection_pool.cpp -------------------------------------------------------------------------------- /src/storage/postgres_delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_delete.cpp -------------------------------------------------------------------------------- /src/storage/postgres_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_index.cpp -------------------------------------------------------------------------------- /src/storage/postgres_index_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_index_entry.cpp -------------------------------------------------------------------------------- /src/storage/postgres_index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_index_set.cpp -------------------------------------------------------------------------------- /src/storage/postgres_insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_insert.cpp -------------------------------------------------------------------------------- /src/storage/postgres_merge_into.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_merge_into.cpp -------------------------------------------------------------------------------- /src/storage/postgres_optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_optimizer.cpp -------------------------------------------------------------------------------- /src/storage/postgres_schema_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_schema_entry.cpp -------------------------------------------------------------------------------- /src/storage/postgres_schema_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_schema_set.cpp -------------------------------------------------------------------------------- /src/storage/postgres_table_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_table_entry.cpp -------------------------------------------------------------------------------- /src/storage/postgres_table_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_table_set.cpp -------------------------------------------------------------------------------- /src/storage/postgres_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_transaction.cpp -------------------------------------------------------------------------------- /src/storage/postgres_transaction_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_transaction_manager.cpp -------------------------------------------------------------------------------- /src/storage/postgres_type_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_type_entry.cpp -------------------------------------------------------------------------------- /src/storage/postgres_type_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_type_set.cpp -------------------------------------------------------------------------------- /src/storage/postgres_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/src/storage/postgres_update.cpp -------------------------------------------------------------------------------- /test/all_pg_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/all_pg_types.sql -------------------------------------------------------------------------------- /test/configs/attach_postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/configs/attach_postgres.json -------------------------------------------------------------------------------- /test/create-decimal-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/create-decimal-tables.py -------------------------------------------------------------------------------- /test/decimals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/decimals.sql -------------------------------------------------------------------------------- /test/other.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/other.sql -------------------------------------------------------------------------------- /test/sql/misc/autoload.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/misc/autoload.test -------------------------------------------------------------------------------- /test/sql/misc/postgres_binary.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/misc/postgres_binary.test -------------------------------------------------------------------------------- /test/sql/scanner/arrays.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/arrays.test -------------------------------------------------------------------------------- /test/sql/scanner/aws-rds.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/aws-rds.test -------------------------------------------------------------------------------- /test/sql/scanner/bug63.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/bug63.test -------------------------------------------------------------------------------- /test/sql/scanner/bug69.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/bug69.test -------------------------------------------------------------------------------- /test/sql/scanner/bug71.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/bug71.test -------------------------------------------------------------------------------- /test/sql/scanner/bug74.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/bug74.test -------------------------------------------------------------------------------- /test/sql/scanner/bug76.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/bug76.test -------------------------------------------------------------------------------- /test/sql/scanner/bug77.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/bug77.test -------------------------------------------------------------------------------- /test/sql/scanner/count_star.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/count_star.test -------------------------------------------------------------------------------- /test/sql/scanner/daterange_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/daterange_array.test -------------------------------------------------------------------------------- /test/sql/scanner/decimals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/decimals.test -------------------------------------------------------------------------------- /test/sql/scanner/interval.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/interval.test -------------------------------------------------------------------------------- /test/sql/scanner/missing_table.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/missing_table.test -------------------------------------------------------------------------------- /test/sql/scanner/nulls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/nulls.test -------------------------------------------------------------------------------- /test/sql/scanner/postgres_query.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/postgres_query.test -------------------------------------------------------------------------------- /test/sql/scanner/postgres_query_error.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/postgres_query_error.test -------------------------------------------------------------------------------- /test/sql/scanner/ssl.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/ssl.test -------------------------------------------------------------------------------- /test/sql/scanner/tpcds.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/tpcds.test -------------------------------------------------------------------------------- /test/sql/scanner/tpch.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/tpch.test -------------------------------------------------------------------------------- /test/sql/scanner/types.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/scanner/types.test -------------------------------------------------------------------------------- /test/sql/storage/attach_alter.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_alter.test -------------------------------------------------------------------------------- /test/sql/storage/attach_alter_rollback.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_alter_rollback.test -------------------------------------------------------------------------------- /test/sql/storage/attach_backslash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_backslash.test -------------------------------------------------------------------------------- /test/sql/storage/attach_case_sensitive_columns.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_case_sensitive_columns.test -------------------------------------------------------------------------------- /test/sql/storage/attach_case_sensitive_tables.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_case_sensitive_tables.test -------------------------------------------------------------------------------- /test/sql/storage/attach_checkpoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_checkpoint.test -------------------------------------------------------------------------------- /test/sql/storage/attach_concurrent_queries.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_concurrent_queries.test -------------------------------------------------------------------------------- /test/sql/storage/attach_connection_pool.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_connection_pool.test -------------------------------------------------------------------------------- /test/sql/storage/attach_constraints.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_constraints.test -------------------------------------------------------------------------------- /test/sql/storage/attach_copy_from_database.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_copy_from_database.test -------------------------------------------------------------------------------- /test/sql/storage/attach_create_if_exists.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_create_if_exists.test -------------------------------------------------------------------------------- /test/sql/storage/attach_create_index.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_create_index.test -------------------------------------------------------------------------------- /test/sql/storage/attach_create_uppercase_names.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_create_uppercase_names.test -------------------------------------------------------------------------------- /test/sql/storage/attach_database_list.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_database_list.test -------------------------------------------------------------------------------- /test/sql/storage/attach_database_size.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_database_size.test -------------------------------------------------------------------------------- /test/sql/storage/attach_defaults.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_defaults.test -------------------------------------------------------------------------------- /test/sql/storage/attach_delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_delete.test -------------------------------------------------------------------------------- /test/sql/storage/attach_describe.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_describe.test -------------------------------------------------------------------------------- /test/sql/storage/attach_detach.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_detach.test -------------------------------------------------------------------------------- /test/sql/storage/attach_drop.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_drop.test -------------------------------------------------------------------------------- /test/sql/storage/attach_existing_constraints.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_existing_constraints.test -------------------------------------------------------------------------------- /test/sql/storage/attach_existing_enum.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_existing_enum.test -------------------------------------------------------------------------------- /test/sql/storage/attach_existing_multidimensional_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_existing_multidimensional_array.test -------------------------------------------------------------------------------- /test/sql/storage/attach_explicit_schema.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_explicit_schema.test -------------------------------------------------------------------------------- /test/sql/storage/attach_external_access.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_external_access.test -------------------------------------------------------------------------------- /test/sql/storage/attach_filter_pushdown.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_filter_pushdown.test -------------------------------------------------------------------------------- /test/sql/storage/attach_geometry.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_geometry.test -------------------------------------------------------------------------------- /test/sql/storage/attach_giant_numeric.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_giant_numeric.test -------------------------------------------------------------------------------- /test/sql/storage/attach_if_not_exists.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_if_not_exists.test -------------------------------------------------------------------------------- /test/sql/storage/attach_insert_from_scan_large.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_insert_from_scan_large.test -------------------------------------------------------------------------------- /test/sql/storage/attach_isolation_level.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_isolation_level.test -------------------------------------------------------------------------------- /test/sql/storage/attach_issue_146.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_issue_146.test -------------------------------------------------------------------------------- /test/sql/storage/attach_json.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_json.test -------------------------------------------------------------------------------- /test/sql/storage/attach_keywords.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_keywords.test -------------------------------------------------------------------------------- /test/sql/storage/attach_large_delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_large_delete.test -------------------------------------------------------------------------------- /test/sql/storage/attach_list_tables.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_list_tables.test -------------------------------------------------------------------------------- /test/sql/storage/attach_main_schema.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_main_schema.test -------------------------------------------------------------------------------- /test/sql/storage/attach_merge.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_merge.test -------------------------------------------------------------------------------- /test/sql/storage/attach_multi_join.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_multi_join.test -------------------------------------------------------------------------------- /test/sql/storage/attach_multi_join_large.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_multi_join_large.test_slow -------------------------------------------------------------------------------- /test/sql/storage/attach_non_existent.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_non_existent.test -------------------------------------------------------------------------------- /test/sql/storage/attach_null_byte.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_null_byte.test -------------------------------------------------------------------------------- /test/sql/storage/attach_on_conflict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_on_conflict.test -------------------------------------------------------------------------------- /test/sql/storage/attach_pages_per_task.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_pages_per_task.test -------------------------------------------------------------------------------- /test/sql/storage/attach_postgis.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_postgis.test -------------------------------------------------------------------------------- /test/sql/storage/attach_postgres_execute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_postgres_execute.test -------------------------------------------------------------------------------- /test/sql/storage/attach_prefix.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_prefix.test -------------------------------------------------------------------------------- /test/sql/storage/attach_read_only.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_read_only.test -------------------------------------------------------------------------------- /test/sql/storage/attach_schema_param.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_schema_param.test -------------------------------------------------------------------------------- /test/sql/storage/attach_schemas.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_schemas.test -------------------------------------------------------------------------------- /test/sql/storage/attach_secret.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_secret.test -------------------------------------------------------------------------------- /test/sql/storage/attach_show_all_tables.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_show_all_tables.test -------------------------------------------------------------------------------- /test/sql/storage/attach_simple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_simple.test -------------------------------------------------------------------------------- /test/sql/storage/attach_temporary_table.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_temporary_table.test -------------------------------------------------------------------------------- /test/sql/storage/attach_text_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_text_array.test -------------------------------------------------------------------------------- /test/sql/storage/attach_timeout_error.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_timeout_error.test -------------------------------------------------------------------------------- /test/sql/storage/attach_top_n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_top_n.test -------------------------------------------------------------------------------- /test/sql/storage/attach_transactions.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_transactions.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_blob.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_blob.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_char.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_char.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_complex_composite.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_complex_composite.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_date.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_date.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_decimal.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_decimal.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_enum.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_enum.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_interval.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_interval.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_json.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_json.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_lists.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_lists.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_macaddr.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_macaddr.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_multidimensional_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_multidimensional_array.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_numerics.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_numerics.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_struct.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_struct.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_time.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_time.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_timestamp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_timestamp.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_uuid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_uuid.test -------------------------------------------------------------------------------- /test/sql/storage/attach_types_varchar.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_types_varchar.test -------------------------------------------------------------------------------- /test/sql/storage/attach_ubigint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_ubigint.test -------------------------------------------------------------------------------- /test/sql/storage/attach_update.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_update.test -------------------------------------------------------------------------------- /test/sql/storage/attach_upper_case.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_upper_case.test -------------------------------------------------------------------------------- /test/sql/storage/attach_use_binary_copy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_use_binary_copy.test -------------------------------------------------------------------------------- /test/sql/storage/attach_varchar_list_nulls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_varchar_list_nulls.test -------------------------------------------------------------------------------- /test/sql/storage/attach_verify_big_table.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_verify_big_table.test_slow -------------------------------------------------------------------------------- /test/sql/storage/attach_views.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/attach_views.test -------------------------------------------------------------------------------- /test/sql/storage/bug136.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/bug136.test -------------------------------------------------------------------------------- /test/sql/storage/limit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/limit.test -------------------------------------------------------------------------------- /test/sql/storage/postgres_execute_transaction.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/postgres_execute_transaction.test -------------------------------------------------------------------------------- /test/sql/storage/postgres_execute_use_transaction.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/postgres_execute_use_transaction.test -------------------------------------------------------------------------------- /test/sql/storage/postgres_query_use_transaction.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/test/sql/storage/postgres_query_use_transaction.test -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-postgres/HEAD/vcpkg.json --------------------------------------------------------------------------------