Skip to content

Commit

Permalink
update dudckdb submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
hmeriann committed Jul 4, 2024
2 parents dd76e05 + 4bc4c21 commit 741e04b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 49 files
+11 −5 .github/workflows/LinuxRelease.yml
+4 −0 data/csv/glob_dif_dialect/f_1.csv
+5 −0 data/csv/glob_dif_dialect/f_2.csv
+7 −0 data/csv/multiple_files/more_columns/file_6.csv
+1 −2 src/common/string_util.cpp
+31 −13 src/common/types/vector.cpp
+1 −0 src/execution/operator/csv_scanner/scanner/CMakeLists.txt
+2 −2 src/execution/operator/csv_scanner/scanner/base_scanner.cpp
+13 −10 src/execution/operator/csv_scanner/scanner/column_count_scanner.cpp
+105 −0 src/execution/operator/csv_scanner/scanner/csv_schema.cpp
+1 −1 src/execution/operator/csv_scanner/scanner/skip_scanner.cpp
+21 −14 src/execution/operator/csv_scanner/scanner/string_value_scanner.cpp
+90 −0 src/execution/operator/csv_scanner/sniffer/csv_sniffer.cpp
+7 −10 src/execution/operator/csv_scanner/sniffer/dialect_detection.cpp
+63 −52 src/execution/operator/csv_scanner/sniffer/header_detection.cpp
+69 −67 src/execution/operator/csv_scanner/sniffer/type_detection.cpp
+7 −114 src/execution/operator/csv_scanner/table_function/csv_file_scanner.cpp
+5 −0 src/execution/operator/csv_scanner/util/csv_error.cpp
+13 −0 src/function/table/system/test_vector_types.cpp
+5 −2 src/include/duckdb/execution/operator/csv_scanner/base_scanner.hpp
+4 −2 src/include/duckdb/execution/operator/csv_scanner/column_count_scanner.hpp
+2 −0 src/include/duckdb/execution/operator/csv_scanner/csv_error.hpp
+4 −22 src/include/duckdb/execution/operator/csv_scanner/csv_file_scanner.hpp
+35 −0 src/include/duckdb/execution/operator/csv_scanner/csv_schema.hpp
+27 −6 src/include/duckdb/execution/operator/csv_scanner/csv_sniffer.hpp
+1 −2 src/include/duckdb/execution/operator/csv_scanner/global_csv_state.hpp
+7 −7 src/include/duckdb/execution/operator/csv_scanner/string_value_scanner.hpp
+3 −0 src/storage/statistics/string_stats.cpp
+2 −1 src/storage/statistics/struct_stats.cpp
+12 −0 test/sql/copy/csv/glob/read_csv_glob.test
+38 −1 test/sql/copy/csv/test_mismatch_schemas.test
+1 −1 test/sql/copy/csv/test_union_by_name.test
+5 −0 test/sql/types/nested/map/test_map_vector_types.test
+1 −5 tools/pythonpkg/src/include/duckdb_python/python_objects.hpp
+6 −0 tools/pythonpkg/src/native/python_conversion.cpp
+78 −15 tools/pythonpkg/src/native/python_objects.cpp
+1 −17 tools/pythonpkg/src/numpy/array_wrapper.cpp
+73 −0 tools/pythonpkg/tests/fast/api/test_dbapi_fetch.py
+1 −1 tools/pythonpkg/tests/fast/arrow/test_nested_arrow.py
+3 −3 tools/pythonpkg/tests/fast/numpy/test_numpy_new_path.py
+2 −2 tools/pythonpkg/tests/fast/pandas/test_df_object_resolution.py
+62 −30 tools/pythonpkg/tests/fast/pandas/test_df_recursive_nested.py
+84 −25 tools/pythonpkg/tests/fast/pandas/test_fetch_nested.py
+41 −11 tools/pythonpkg/tests/fast/pandas/test_pandas_timestamp.py
+2 −6 tools/pythonpkg/tests/fast/relational_api/test_rapi_aggregations.py
+8 −8 tools/pythonpkg/tests/fast/relational_api/test_rapi_windows.py
+4 −4 tools/pythonpkg/tests/fast/test_all_types.py
+3 −3 tools/pythonpkg/tests/fast/types/test_nested.py
+1 −1 tools/pythonpkg/tests/fast/udf/test_scalar.py

0 comments on commit 741e04b

Please sign in to comment.