Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/duckdb
Submodule duckdb updated 74 files
+1 −1 .github/config/extensions/quack.cmake
+1 −0 .github/config/extensions/spatial.cmake
+1 −0 .github/config/extensions/vss.cmake
+26 −0 .github/patches/extensions/spatial/0001-reset-storage.patch
+26 −0 .github/patches/extensions/vss/0001-reset-storage.patch
+ data/storage/alp_corrupt_exception_position.db.gz
+ data/storage/alprd_corrupt_exception_position.db.gz
+6 −1 extension/json/json_functions/json_create.cpp
+2 −1 extension/parquet/include/writer/parquet_write_operators.hpp
+33 −6 extension/parquet/parquet_writer.cpp
+4 −4 src/catalog/catalog_entry/duck_index_entry.cpp
+5 −4 src/catalog/catalog_entry/duck_table_entry.cpp
+21 −6 src/common/types/bignum.cpp
+96 −26 src/common/types/interval.cpp
+3 −1 src/common/types/timestamp.cpp
+1 −1 src/execution/index/art/art.cpp
+2 −2 src/execution/index/bound_index.cpp
+1 −1 src/execution/index/unbound_index.cpp
+7 −1 src/function/cast/bignum_casts.cpp
+3 −2 src/include/duckdb/catalog/catalog_entry/duck_index_entry.hpp
+4 −2 src/include/duckdb/catalog/catalog_entry/duck_table_entry.hpp
+3 −0 src/include/duckdb/common/types/bignum.hpp
+2 −2 src/include/duckdb/execution/index/art/art.hpp
+4 −5 src/include/duckdb/execution/index/bound_index.hpp
+2 −2 src/include/duckdb/execution/index/unbound_index.hpp
+8 −0 src/include/duckdb/storage/compression/alp/alp_scan.hpp
+8 −0 src/include/duckdb/storage/compression/alprd/alprd_scan.hpp
+1 −1 src/include/duckdb/storage/compression/dictionary/analyze.hpp
+1 −1 src/include/duckdb/storage/compression/dictionary/common.hpp
+1 −1 src/include/duckdb/storage/compression/dictionary/compression.hpp
+10 −2 src/include/duckdb/storage/data_table.hpp
+3 −4 src/include/duckdb/storage/external_file_cache.hpp
+1 −2 src/include/duckdb/storage/index.hpp
+6 −1 src/include/duckdb/storage/table/row_group.hpp
+7 −0 src/include/duckdb/storage/table/row_group_collection.hpp
+1 −3 src/include/duckdb/storage/table/table_index_list.hpp
+38 −2 src/include/duckdb/transaction/commit_state.hpp
+4 −0 src/include/duckdb/transaction/duck_transaction.hpp
+3 −1 src/include/duckdb/transaction/undo_buffer.hpp
+4 −4 src/optimizer/filter_combiner.cpp
+1 −1 src/storage/compression/dictionary/analyze.cpp
+1 −1 src/storage/compression/dictionary/common.cpp
+2 −1 src/storage/compression/dictionary/compression.cpp
+7 −12 src/storage/data_table.cpp
+7 −5 src/storage/external_file_cache.cpp
+5 −2 src/storage/local_storage.cpp
+14 −7 src/storage/table/row_group.cpp
+17 −4 src/storage/table/row_group_collection.cpp
+1 −11 src/storage/table_index_list.cpp
+43 −6 src/transaction/commit_state.cpp
+8 −0 src/transaction/duck_transaction.cpp
+1 −2 src/transaction/undo_buffer.cpp
+6 −0 test/configs/force_storage_restart.json
+2 −2 test/sql/copy/parquet/writer/parquet_test_all_types.test
+24 −0 test/sql/copy/parquet/writer/parquet_timetz_roundtrip.test
+13 −0 test/sql/copy/return_stats.test
+26 −0 test/sql/function/generic/test_between.test
+5 −0 test/sql/json/scalar/test_json_create.test
+22 −0 test/sql/storage/compression/alp/alp_corrupted_exception_position.test
+22 −0 test/sql/storage/compression/alprd/alprd_corrupted_exception_position.test
+59 −0 test/sql/transactions/concurrent_drop_index.test
+79 −0 test/sql/transactions/concurrent_drop_table.test
+71 −0 test/sql/transactions/revert_commit_index_corruption_drop_table.test
+43 −0 test/sql/transactions/rollback_drop_column.test
+60 −0 test/sql/transactions/rollback_drop_index.test
+40 −0 test/sql/transactions/rollback_drop_table.test
+70 −0 test/sql/transactions/rollback_drop_table_with_delete.test
+76 −0 test/sql/transactions/rollback_drop_table_with_delete_concurrent.test
+43 −0 test/sql/transactions/rollback_drop_table_with_pk.test
+43 −0 test/sql/types/bignum/test_bignum_try_cast.test
+35 −0 test/sql/types/bignum/test_varchar_bignum_unhappy.test
+10 −0 test/sql/types/interval/interval_try_cast.test
+22 −0 test/sql/types/time/test_time_ns.test
+12 −0 tools/shell/tests/test_shell_rendering.py
Loading