Skip to content

Commit

Permalink
Bump to duckdb a7b405351e
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Jan 30, 2025
1 parent 7b64b35 commit 707e675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/duckdb
Submodule duckdb updated 78 files
+1 −2 .github/config/out_of_tree_extensions.cmake
+0 −57 .github/patches/extensions/arrow/arrow_extension_types.patch
+1 −1 .github/workflows/Pyodide.yml
+1 −2 benchmark/tpch/startup.cpp
+91 −61 extension/core_functions/scalar/list/flatten.cpp
+1 −0 extension/parquet/column_writer.cpp
+0 −1 extension/parquet/parquet_writer.cpp
+2 −0 scripts/sqllogictest/__init__.py
+27 −0 scripts/sqllogictest/parser/parser.py
+14 −0 scripts/sqllogictest/result.py
+2 −0 scripts/sqllogictest/statement/__init__.py
+9 −0 scripts/sqllogictest/statement/unzip.py
+1 −0 scripts/sqllogictest/token.py
+15 −2 src/catalog/catalog.cpp
+17 −1 src/catalog/catalog_search_path.cpp
+20 −19 src/common/enum_util.cpp
+4 −1 src/common/random_engine.cpp
+9 −8 src/common/serializer/memory_stream.cpp
+31 −28 src/execution/index/art/art.cpp
+4 −9 src/execution/index/art/leaf.cpp
+1 −1 src/execution/index/art/node.cpp
+3 −2 src/execution/index/art/prefix.cpp
+6 −8 src/execution/index/bound_index.cpp
+19 −4 src/execution/operator/csv_scanner/scanner/string_value_scanner.cpp
+26 −1 src/execution/operator/persistent/physical_copy_database.cpp
+2 −1 src/execution/operator/persistent/physical_delete.cpp
+15 −36 src/execution/operator/persistent/physical_insert.cpp
+2 −1 src/execution/operator/schema/physical_create_art_index.cpp
+1 −0 src/execution/sample/reservoir_sample.cpp
+4 −0 src/include/duckdb/catalog/catalog.hpp
+2 −0 src/include/duckdb/catalog/catalog_search_path.hpp
+8 −8 src/include/duckdb/common/enum_util.hpp
+11 −14 src/include/duckdb/execution/index/art/art.hpp
+2 −1 src/include/duckdb/execution/index/art/prefix.hpp
+21 −10 src/include/duckdb/execution/index/bound_index.hpp
+2 −0 src/include/duckdb/execution/operator/csv_scanner/string_value_scanner.hpp
+4 −7 src/include/duckdb/execution/operator/persistent/physical_insert.hpp
+7 −1 src/include/duckdb/execution/reservoir_sample.hpp
+5 −4 src/include/duckdb/storage/data_table.hpp
+4 −0 src/include/duckdb/storage/index_storage_info.hpp
+2 −0 src/include/duckdb/transaction/local_storage.hpp
+2 −2 src/main/extension/extension_helper.cpp
+6 −0 src/optimizer/column_lifetime_analyzer.cpp
+13 −3 src/optimizer/filter_combiner.cpp
+14 −3 src/optimizer/late_materialization.cpp
+1 −0 src/parser/transform/expression/transform_columnref.cpp
+0 −1 src/planner/binder/statement/bind_copy_database.cpp
+1 −1 src/planner/binder/statement/bind_create.cpp
+1 −2 src/planner/binder/tableref/bind_table_function.cpp
+2 −0 src/planner/subquery/flatten_dependent_join.cpp
+21 −12 src/storage/data_table.cpp
+6 −5 src/storage/local_storage.cpp
+5 −4 src/storage/table_index_list.cpp
+1 −1 src/storage/wal_replay.cpp
+17 −0 test/fuzzer/duckfuzz/late_materialization_filter.test
+17 −0 test/fuzzer/public/insert_returning.test
+28 −0 test/fuzzer/public/lateral_in_right_side_of_join.test
+20 −0 test/fuzzer/public/unsatisfiable_filter_prune.test
+16 −0 test/sql/catalog/sequence/test_sequence_google_fuzz.test
+3 −0 test/sql/constraints/primarykey/test_pk_updel_multi_column.test
+2 −2 test/sql/copy/csv/14512.test
+7 −0 test/sql/copy/csv/parallel/test_parallel_csv.test
+1 −1 test/sql/copy/csv/test_thijs_unquoted_file.test
+1 −4 test/sql/copy_database/copy_database_index.test
+42 −0 test/sql/copy_database/copy_database_with_index.test
+62 −0 test/sql/copy_database/copy_database_with_unique_index.test
+10 −0 test/sql/function/list/flatten.test
+39 −0 test/sql/index/art/constraints/test_art_eager_with_wal.test
+7 −0 test/sql/index/art/constraints/test_art_tx_returning.test
+6 −0 test/sql/projection/select_star_rename.test
+5 −0 test/sql/sample/table_samples/basic_sample_tests.test
+1 −0 test/sql/sample/table_samples/sample_stores_rows_from_later_on.test_slow
+1 −0 test/sql/sample/table_samples/table_sample_converts_to_block_sample.test
+1 −0 test/sql/sample/table_samples/table_sample_is_stored.test_slow
+1 −0 test/sql/sample/table_samples/test_sample_is_destroyed_on_updates.test
+3 −3 tools/pythonpkg/duckdb/experimental/spark/sql/functions.py
+3 −10 tools/pythonpkg/tests/fast/spark/test_spark_functions_date.py
+1 −1 tools/shell/shell.cpp

0 comments on commit 707e675

Please sign in to comment.