Skip to content

Commit d07d339

Browse files
committed
Merge branch 'view' into structs
2 parents 0a21b92 + 3ac8aae commit d07d339

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/distribution.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ concurrency:
2424
jobs:
2525
duckdb-stable-build:
2626
name: Build extension binaries
27-
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.1.0
27+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
2828
with:
29-
duckdb_version: v1.1.0
30-
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_rtools"
29+
duckdb_version: main
30+
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_mingw"
3131
extension_name: substrait
3232

3333
duckdb-stable-deploy:
3434
name: Deploy extension binaries
3535
needs: duckdb-stable-build
36-
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@v1.1.0
36+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@main
3737
secrets: inherit
3838
with:
39-
duckdb_version: v1.1.0
40-
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_rtools"
39+
duckdb_version: main
40+
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_mingw"
4141
extension_name: substrait
4242
deploy_latest: true

.github/workflows/main_distribution.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
duckdb_version: main
2525
ci_tools_version: main
26-
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_rtools"
26+
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_mingw"
2727
extension_name: substrait
2828

test/python/test_validator.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,18 @@ def run_tpch_validator(require, query_number):
3131

3232
run_substrait_validator(con,query)
3333

34-
@pytest.mark.parametrize('query_number', [1,3,5,6,7,8,9,10,11,12,13,14,15,18,19])
34+
@pytest.mark.parametrize('query_number', [1,3,5,6,7,8,9,10,11,12,13,14,15,18])
3535
def test_substrait_tpch_validator(require,query_number):
3636
run_tpch_validator(require,query_number)
3737

3838
@pytest.mark.skip(reason="DuckDB Compilation: INTERNAL Error: Unsupported join type MARK")
3939
def test_substrait_tpch_validator_16(require):
4040
run_tpch_validator(require,16)
4141

42+
@pytest.mark.skip(reason="mismatched types")
43+
def test_substrait_tpch_validator_19(require):
44+
run_tpch_validator(require,19)
45+
4246
@pytest.mark.skip(reason="Skipping this test for now because it is part of the big posref refactoring")
4347
def test_substrait_tpch_validator_18(require):
4448
run_tpch_validator(require,18)

0 commit comments

Comments
 (0)