Skip to content

Commit b7a30c2

Browse files
authored
Merge pull request #192 from carlopi/bump0101
Bump DuckDB to v0.10.1
2 parents 375710f + f326d61 commit b7a30c2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/MainDistributionPipeline.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Build extension binaries
1717
uses: duckdb/duckdb/.github/workflows/_extension_distribution.yml@3fbbd15390059b8028ad6dfd56a3172e5ebc0ab8
1818
with:
19-
duckdb_version: v0.10.0
19+
duckdb_version: v0.10.1
2020
extension_name: postgres_scanner
2121
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
2222

@@ -26,7 +26,7 @@ jobs:
2626
uses: duckdb/duckdb/.github/workflows/_extension_deploy.yml@3fbbd15390059b8028ad6dfd56a3172e5ebc0ab8
2727
secrets: inherit
2828
with:
29-
duckdb_version: v0.10.0
29+
duckdb_version: v0.10.1
3030
extension_name: postgres_scanner
3131
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
3232
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}

duckdb

Submodule duckdb updated 1257 files

test/sql/storage/attach_types.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ NULL NULL NULL NULL
3636
# test all types
3737
statement ok
3838
CREATE TABLE all_types_tbl AS SELECT *
39-
EXCLUDE (float, double, ubigint, hugeint, uhugeint, nested_int_array, struct, struct_of_arrays, array_of_structs, map, "union")
39+
EXCLUDE (float, double, ubigint, hugeint, uhugeint, nested_int_array, struct, struct_of_arrays, array_of_structs, map, "union", fixed_int_array, fixed_varchar_array, fixed_nested_int_array, fixed_nested_varchar_array, fixed_struct_array, struct_of_fixed_array, fixed_array_of_int_list, list_of_fixed_int_array)
4040
REPLACE(
4141
CASE WHEN int IS NOT NULL THEN '2000-01-01' ELSE NULL END AS date,
4242
CASE WHEN int IS NOT NULL THEN '2000-01-01 01:02:03' ELSE NULL END AS timestamp,

0 commit comments

Comments
 (0)