Skip to content

Commit d355dd0

Browse files
authored
Merge pull request #94 from carlopi/bump_patch_rtools
Bump patch rtools
2 parents 091197e + 9d61a33 commit d355dd0

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@ concurrency:
1414
jobs:
1515
duckdb-stable-build:
1616
name: Build extension binaries
17-
uses: duckdb/duckdb/.github/workflows/_extension_distribution.yml@3fbbd15390059b8028ad6dfd56a3172e5ebc0ab8
17+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
1818
with:
19-
vcpkg_commit: a42af01b72c28a8e1d7b48107b33e4f286a55ef6
20-
duckdb_version: v0.10.0
19+
duckdb_version: main
2120
extension_name: sqlite_scanner
2221

2322
duckdb-stable-deploy:
2423
name: Deploy extension binaries
2524
needs: duckdb-stable-build
26-
uses: duckdb/duckdb/.github/workflows/_extension_deploy.yml@3fbbd15390059b8028ad6dfd56a3172e5ebc0ab8
25+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@main
2726
secrets: inherit
2827
with:
29-
duckdb_version: v0.10.0
28+
duckdb_version: main
3029
extension_name: sqlite_scanner
3130
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
3231
deploy_versioned: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ EXTENSION_FLAGS=\
5050

5151
BUILD_FLAGS=-DEXTENSION_STATIC_BUILD=1 -DBUILD_EXTENSIONS="tpch" ${OSX_BUILD_FLAG} -DDUCKDB_EXPLICIT_PLATFORM='${DUCKDB_PLATFORM}'
5252

53+
ifeq ($(DUCKDB_PLATFORM_RTOOLS),1)
54+
BUILD_FLAGS:=${BUILD_FLAGS} -DCMAKE_CXX_FLAGS="-DDUCKDB_PLATFORM_RTOOLS=1"
55+
endif
56+
5357
CLIENT_FLAGS :=
5458
pull:
5559
git submodule init

duckdb

Submodule duckdb updated 1805 files

src/include/storage/sqlite_table_entry.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SQLiteTableEntry : public TableCatalogEntry {
2525

2626
TableStorageInfo GetStorageInfo(ClientContext &context) override;
2727

28-
void BindUpdateConstraints(LogicalGet &get, LogicalProjection &proj, LogicalUpdate &update,
28+
void BindUpdateConstraints(Binder &binder, LogicalGet &get, LogicalProjection &proj, LogicalUpdate &update,
2929
ClientContext &context) override;
3030
};
3131

src/storage/sqlite_table_entry.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ unique_ptr<BaseStatistics> SQLiteTableEntry::GetStatistics(ClientContext &contex
1616
return nullptr;
1717
}
1818

19-
void SQLiteTableEntry::BindUpdateConstraints(LogicalGet &, LogicalProjection &, LogicalUpdate &, ClientContext &) {
19+
void SQLiteTableEntry::BindUpdateConstraints(Binder &, LogicalGet &, LogicalProjection &, LogicalUpdate &,
20+
ClientContext &) {
2021
}
2122

2223
TableFunction SQLiteTableEntry::GetScanFunction(ClientContext &context, unique_ptr<FunctionData> &bind_data) {

0 commit comments

Comments
 (0)