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 64 files
+2 −2 .github/workflows/Main.yml
+1 −0 api_spec/v1/common/enums.yaml
+101 −101 data/parquet-testing/byte_stream_split.csv
+ data/parquet-testing/byte_stream_split.parquet
+4 −2 data/parquet-testing/pyarrow-generate-parquet.py
+ data/parquet-testing/silly-names.parquet
+1 −1 extension/extension_build_tools.cmake
+16 −2 extension/parquet/decoder/byte_stream_split_decoder.cpp
+70 −0 extension/parquet/parquet_statistics.cpp
+25 −2 scripts/ci/check_staged_extensions.py
+2 −0 src/common/adbc/adbc.cpp
+4 −3 src/common/enum_util.cpp
+6 −1 src/common/exception.cpp
+281 −181 src/common/vector_operations/comparison_operators.cpp
+14 −14 src/execution/expression_executor/execute_comparison.cpp
+5 −0 src/execution/operator/csv_scanner/table_function/csv_multi_file_info.cpp
+1 −0 src/include/duckdb.h
+12 −1 src/include/duckdb/common/exception.hpp
+3 −2 src/include/duckdb/common/fsst.hpp
+5 −4 src/include/duckdb/common/vector_operations/vector_operations.hpp
+1 −3 src/include/duckdb/execution/executor.hpp
+1 −0 src/include/duckdb/storage/compression/alp/algorithm/alp.hpp
+14 −11 src/include/duckdb/storage/compression/alp/alp_scan.hpp
+13 −11 src/include/duckdb/storage/compression/alprd/alprd_scan.hpp
+7 −4 src/include/duckdb/storage/compression/patas/patas_scan.hpp
+4 −0 src/main/capi/helper-c.cpp
+22 −2 src/parallel/executor.cpp
+35 −10 src/parallel/task_scheduler_pool.cpp
+5 −5 src/storage/checkpoint_manager.cpp
+19 −15 src/storage/compression/dictionary/decompression.cpp
+8 −5 src/storage/compression/fsst.cpp
+3 −3 src/storage/compression/rle.cpp
+8 −6 src/storage/single_file_block_manager.cpp
+2 −3 src/storage/table/column_data.cpp
+1 −1 src/storage/table/row_group.cpp
+5 −1 src/storage/table/standard_column_data.cpp
+2 −1 src/storage/table/table_statistics.cpp
+9 −7 src/storage/wal_replay.cpp
+7 −0 test/api/capi/test_capi.cpp
+9 −0 test/api/test_config.cpp
+12 −1 test/sql/copy/csv/test_glob_type.test
+46 −0 test/sql/copy/parquet/bloom_filters.test
+1 −1 test/sql/copy/parquet/byte_stream_split.test
+1 −1 test/sql/join/test_huge_nested_payloads.test_slow
+21 −20 test/sql/join/test_nested_keys.test_slow
+1 −1 test/sql/storage/compression/alp/alp_corrupted_file.test
+1 −1 test/sql/storage/compression/alp/alp_corrupted_offsets.test
+1 −1 test/sql/storage/compression/alp/alp_corrupted_vector_size.test
+1 −1 test/sql/storage/compression/alprd/alprd_corrupted_dict_size.test
+28 −36 test/sql/storage/compression/dictionary/invalid_dictionary_metadata.test
+1 −1 test/sql/storage/compression/fsst/invalid_fsst_bitpacking_width.test
+1 −1 test/sql/storage/compression/patas/patas_corrupted_file.test
+1 −1 test/sql/storage/compression/rle/rle_corrupted_count_offset.test
+60 −0 test/sql/storage/wal/wal_null_update_row_group_pruning.test
+2 −2 test/sql/storage/wal_torn_write.cpp
+4 −4 test/sql/subquery/any_all/test_multi_column_mark_join_nulls.test
+4 −4 test/sql/types/list/list_null_members.test
+20 −0 test/sql/types/list/list_null_members_small.test
+0 −1 test/sql/types/struct/inet_struct_comparison.test
+14 −14 test/sql/types/struct/struct_null_members.test
+7 −6 test/sql/types/struct/unnamed_struct_comparison.test
+38 −0 test/sql/types/union/union_compare.test
+4 −0 tools/shell/CMakeLists.txt
+11 −0 tools/shell/rc/duckdb.manifest
Loading