Skip to content

Commit

Permalink
Bump DuckDB and adjust test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Sep 2, 2023
1 parent b215537 commit 2c6ccc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 89 files
+61 −18 .github/actions/build_extensions/action.yml
+31 −0 .github/config/bundled_extensions.cmake
+3 −0 .github/config/in_tree_extensions.cmake
+6 −9 .github/config/out_of_tree_extensions.cmake
+8 −7 .github/config/uncovered_files.csv
+20 −0 .github/patches/extensions/aws/error_msg_changes.patch
+20 −0 .github/patches/extensions/iceberg/error_msg_changes.patch
+7 −1 .github/workflows/Java.yml
+12 −15 .github/workflows/LinuxRelease.yml
+0 −10 .github/workflows/Main.yml
+34 −14 .github/workflows/OSX.yml
+1 −0 .github/workflows/Python.yml
+3 −25 .github/workflows/Windows.yml
+34 −10 CMakeLists.txt
+19 −1 Makefile
+ data/csv/who.csv.gz
+16 −21 extension/inet/inet_extension.cpp
+11 −22 extension/visualizer/visualizer_extension.cpp
+59 −0 scripts/create_local_extension_repo.py
+6 −1 scripts/extension-upload-test.sh
+130 −22 scripts/generate_extensions_function.py
+7 −2 scripts/get_test_list.py
+30 −2 scripts/run_tests_one_by_one.py
+144 −63 src/catalog/catalog.cpp
+13 −0 src/common/exception.cpp
+21 −6 src/common/file_system.cpp
+3 −1 src/core_functions/scalar/generic/current_setting.cpp
+2 −1 src/execution/operator/helper/physical_load.cpp
+3 −1 src/execution/operator/helper/physical_reset.cpp
+3 −1 src/execution/operator/helper/physical_set.cpp
+2 −1 src/function/pragma/pragma_queries.cpp
+8 −3 src/function/table/read_csv.cpp
+20 −5 src/include/duckdb/catalog/catalog.hpp
+15 −1 src/include/duckdb/common/exception.hpp
+2 −0 src/include/duckdb/main/client_config.hpp
+12 −0 src/include/duckdb/main/config.hpp
+6 −1 src/include/duckdb/main/extension/generated_extension_loader.hpp
+209 −151 src/include/duckdb/main/extension_entries.hpp
+34 −3 src/include/duckdb/main/extension_helper.hpp
+30 −0 src/include/duckdb/main/settings.hpp
+4 −0 src/include/duckdb/parser/parsed_data/load_info.hpp
+4 −0 src/include/duckdb/planner/binder.hpp
+5 −0 src/include/duckdb/storage/serialization/parse_info.json
+3 −0 src/main/config.cpp
+10 −12 src/main/extension/CMakeLists.txt
+57 −0 src/main/extension/extension_helper.cpp
+46 −7 src/main/extension/extension_install.cpp
+1 −1 src/main/extension/generated_extension_loader.cpp.in
+46 −0 src/main/settings/settings.cpp
+1 −0 src/parser/transform/statement/transform_load.cpp
+69 −23 src/planner/binder/tableref/bind_basetableref.cpp
+5 −4 src/planner/expression_binder/order_binder.cpp
+2 −0 src/storage/serialization/serialize_parse_info.cpp
+2 −4 test/CMakeLists.txt
+11 −0 test/api/test_reset.cpp
+89 −0 test/extension/autoloading_base.test
+41 −0 test/extension/autoloading_copy_function.test
+46 −0 test/extension/autoloading_current_setting.test
+49 −0 test/extension/autoloading_filesystems.test
+44 −0 test/extension/autoloading_load_only.test
+47 −0 test/extension/autoloading_reset_setting.test
+38 −0 test/extension/autoloading_types.test
+24 −0 test/sql/aggregate/distinct/issue8505.test
+2 −0 test/sql/catalog/test_extension_suggestion.test
+137 −0 test/sql/copy/csv/auto/test_describe_order.test
+1 −1 test/sql/copy/csv/parallel/csv_parallel_clickbench.test_slow
+2 −0 test/sql/copy/csv/zstd_crash.test
+4 −0 test/sql/copy/csv/zstd_fs.test
+6 −6 test/sql/copy/parquet/writer/parquet_write_memory_limit.test_slow
+2 −0 test/sql/error/extension_function_error.test
+2 −2 test/sql/inet/test_inet_storage.test
+1 −1 test/sql/inet/test_inet_type.test
+2 −0 test/sql/json/read_json_objects.test
+2 −0 test/sql/settings/test_disabled_file_system_httpfs.test
+2 −0 test/sql/table_function/duckdb_extensions.test
+38 −9 test/sqlite/sqllogic_test_runner.cpp
+21 −1 third_party/libpg_query/grammar/statements/load.y
+1 −0 third_party/libpg_query/grammar/types/load.yh
+1 −0 third_party/libpg_query/include/nodes/parsenodes.hpp
+8,747 −8,821 third_party/libpg_query/src_backend_parser_gram.cpp
+3 −0 tools/nodejs/configure.py
+2 −0 tools/pythonpkg/setup.py
+1 −1 tools/pythonpkg/src/dataframe.cpp
+2 −59 tools/pythonpkg/src/include/duckdb_python/import_cache/modules/pandas_module.hpp
+1 −1 tools/pythonpkg/tests/conftest.py
+1 −1 tools/pythonpkg/tests/extensions/test_extensions_loading.py
+1 −1 tools/pythonpkg/tests/fast/api/test_dbapi08.py
+4 −3 tools/pythonpkg/tests/fast/pandas/test_pandas_arrow.py
+4 −0 tools/rpkg/rconfigure.py
2 changes: 1 addition & 1 deletion test/sql/aws_errors.test
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
statement error
CALL load_aws_credentials();
----
Catalog Error: Function with name "load_aws_credentials" is not in the catalog, but it exists in the aws extension.
Catalog Error: Table Function with name "load_aws_credentials" is not in the catalog, but it exists in the aws extension.

# Require statement will ensure this test is run with this extension loaded
require aws
Expand Down

0 comments on commit 2c6ccc9

Please sign in to comment.