Skip to content

Commit

Permalink
Bump duckdb, also in MainDistributionPipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Feb 12, 2024
1 parent d855667 commit 505b0e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ concurrency:
jobs:
duckdb-stable-build:
name: Build extension binaries
uses: duckdb/duckdb/.github/workflows/_extension_distribution.yml@5b391512a8fc7800a0c22d98714e6d8f25c002cf
uses: duckdb/duckdb/.github/workflows/_extension_distribution.yml@fefb0708ed10bf143b6843f9584536368658acdf
with:
duckdb_version: 5b391512a8fc7800a0c22d98714e6d8f25c002cf
duckdb_version: fefb0708ed
extension_name: postgres_scanner
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'

duckdb-stable-deploy:
name: Deploy extension binaries
needs: duckdb-stable-build
uses: ./.github/workflows/_extension_deploy.yml
uses: ./.github/workflows/_extension_deploy.yml@fefb0708ed10bf143b6843f9584536368658acdf
secrets: inherit
with:
duckdb_version: 5b391512a8fc7800a0c22d98714e6d8f25c002cf
duckdb_version: fefb0708ed
extension_name: postgres_scanner
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 54 files
+12 −10 .github/patches/extensions/arrow/merged_patch.patch
+7 −7 .github/workflows/NightlyTests.yml
+4 −0 data/csv/integer_exponent.csv
+14 −8 src/catalog/catalog_entry/type_catalog_entry.cpp
+15 −4 src/common/arrow/arrow_wrapper.cpp
+4 −0 src/common/types/time.cpp
+1 −25 src/function/table/arrow.cpp
+3 −0 src/include/duckdb/common/operator/integer_cast_operator.hpp
+0 −2 src/include/duckdb/function/table/arrow.hpp
+3 −3 src/include/duckdb/main/config.hpp
+4 −0 src/include/duckdb/main/query_result.hpp
+4 −3 src/include/duckdb/parallel/task_scheduler.hpp
+0 −8 src/main/config.cpp
+2 −2 src/main/database.cpp
+24 −0 src/main/query_result.cpp
+26 −5 src/main/settings/settings.cpp
+15 −11 src/parallel/task_scheduler.cpp
+1 −1 src/parser/column_list.cpp
+1 −1 src/planner/bind_context.cpp
+1 −1 src/planner/binder/query_node/bind_cte_node.cpp
+2 −29 src/planner/binder/statement/bind_copy.cpp
+7 −2 src/planner/binder/statement/bind_create.cpp
+1 −1 test/api/test_config.cpp
+1 −1 test/api/test_reset.cpp
+38 −0 test/api/test_threads.cpp
+13 −0 test/sql/copy/csv/integer_exponent.test
+6 −6 test/sql/copy/csv/test_csv_duplicate_columns.test
+7 −7 test/sql/copy/parquet/test_parquet_duplicate_columns.test
+28 −28 test/sql/cte/recursive_hang_2745.test
+61 −0 test/sql/export/export_types.test
+2 −0 test/sql/fts/test_issue_10254.test
+2 −0 test/sql/fts/test_issue_10281.test
+1 −1 test/sql/function/list/list_reverse.test
+1 −1 test/sql/join/left_outer/test_left_join_on_true.test
+4 −4 test/sql/types/list/unnest_null_empty.test
+1 −1 test/sql/types/struct/unnest_struct.test
+1 −0 test/unittest.cpp
+2 −2 tools/juliapkg/src/database.jl
+3 −0 tools/pythonpkg/src/common/exceptions.cpp
+2 −0 tools/pythonpkg/src/include/duckdb_python/pyrelation.hpp
+3 −3 tools/pythonpkg/src/include/duckdb_python/pyresult.hpp
+5 −33 tools/pythonpkg/src/pandas/scan.cpp
+7 −3 tools/pythonpkg/src/pyrelation.cpp
+18 −20 tools/pythonpkg/src/pyresult.cpp
+6 −2 tools/pythonpkg/src/python_udf.cpp
+2 −2 tools/pythonpkg/tests/conftest.py
+4 −1 tools/pythonpkg/tests/extensions/test_extensions_loading.py
+15 −0 tools/pythonpkg/tests/fast/api/test_duckdb_query.py
+28 −0 tools/pythonpkg/tests/fast/arrow/test_9443.py
+8 −4 tools/pythonpkg/tests/fast/arrow/test_filter_pushdown.py
+16 −4 tools/pythonpkg/tests/fast/pandas/test_2304.py
+6 −4 tools/pythonpkg/tests/fast/pandas/test_same_name.py
+1 −1 tools/pythonpkg/tests/fast/pandas/test_timestamp.py
+1 −1 tools/pythonpkg/tests/fast/udf/test_scalar_arrow.py

0 comments on commit 505b0e4

Please sign in to comment.