Skip to content

Commit c7615b2

Browse files
authored
changes to use 1.2.1 version of duckdb and extension-ci-tools. (#154)
1 parent 611d92b commit c7615b2

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/distribution.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
name: Build extension binaries
2727
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
2828
with:
29-
duckdb_version: main
30-
ci_tools_version: 8262e6fafa6b62a82f9d671d33d311b9b578127e
29+
duckdb_version: 8e52ec43959ab363643d63cb78ee214577111da4
30+
ci_tools_version: 58970c538d35919db875096460c05806056f4de0
3131
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_mingw"
3232
extension_name: substrait
3333

@@ -37,8 +37,8 @@ jobs:
3737
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@main
3838
secrets: inherit
3939
with:
40-
duckdb_version: main
41-
ci_tools_version: 8262e6fafa6b62a82f9d671d33d311b9b578127e
40+
duckdb_version: 8e52ec43959ab363643d63cb78ee214577111da4
41+
ci_tools_version: 58970c538d35919db875096460c05806056f4de0
4242
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_mingw"
4343
extension_name: substrait
4444
deploy_latest: true

.github/workflows/main_distribution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
name: Build extension binaries
2222
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
2323
with:
24-
duckdb_version: c009b4ea62f9fcf6ffed6aad51c8f1833121bbfb
25-
ci_tools_version: 8262e6fafa6b62a82f9d671d33d311b9b578127e
24+
duckdb_version: 8e52ec43959ab363643d63cb78ee214577111da4
25+
ci_tools_version: 58970c538d35919db875096460c05806056f4de0
2626
exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64;windows_amd64_mingw;windows_amd64_rtools"
2727
extension_name: substrait
2828

duckdb

Submodule duckdb updated 624 files

src/from_substrait.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -900,11 +900,11 @@ shared_ptr<Relation> SubstraitToDuckDB::TransformWriteOp(const substrait::Rel &s
900900
case RelationType::PROJECTION_RELATION: {
901901
auto project = std::move(input.get()->Cast<ProjectionRelation>());
902902
auto filter = std::move(project.child->Cast<FilterRelation>());
903-
return make_shared_ptr<DeleteRelation>(filter.context, std::move(filter.condition), catalog_name, schema_name, table_name);
903+
return make_shared_ptr<DeleteRelation>(filter.context, std::move(filter.condition), schema_name, table_name);
904904
}
905905
case RelationType::FILTER_RELATION: {
906906
auto filter = std::move(input.get()->Cast<FilterRelation>());
907-
return make_shared_ptr<DeleteRelation>(filter.context, std::move(filter.condition), catalog_name, schema_name, table_name);
907+
return make_shared_ptr<DeleteRelation>(filter.context, std::move(filter.condition), schema_name, table_name);
908908
}
909909
default:
910910
throw NotImplementedException("Unsupported relation type for delete operation");

substrait

Submodule substrait updated 53 files

0 commit comments

Comments
 (0)