forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
.github/patches/extensions/sqlite_scanner/binder_update.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
diff --git a/src/include/storage/sqlite_table_entry.hpp b/src/include/storage/sqlite_table_entry.hpp | ||
index 6e64d55..b08319b 100644 | ||
--- a/src/include/storage/sqlite_table_entry.hpp | ||
+++ b/src/include/storage/sqlite_table_entry.hpp | ||
@@ -25,7 +25,7 @@ public: | ||
|
||
TableStorageInfo GetStorageInfo(ClientContext &context) override; | ||
|
||
- void BindUpdateConstraints(LogicalGet &get, LogicalProjection &proj, LogicalUpdate &update, | ||
+ void BindUpdateConstraints(Binder &binder, LogicalGet &get, LogicalProjection &proj, LogicalUpdate &update, | ||
ClientContext &context) override; | ||
}; | ||
|
||
diff --git a/src/storage/sqlite_table_entry.cpp b/src/storage/sqlite_table_entry.cpp | ||
index fadbb39..47378b0 100644 | ||
--- a/src/storage/sqlite_table_entry.cpp | ||
+++ b/src/storage/sqlite_table_entry.cpp | ||
@@ -16,7 +16,8 @@ unique_ptr<BaseStatistics> SQLiteTableEntry::GetStatistics(ClientContext &contex | ||
return nullptr; | ||
} | ||
|
||
-void SQLiteTableEntry::BindUpdateConstraints(LogicalGet &, LogicalProjection &, LogicalUpdate &, ClientContext &) { | ||
+void SQLiteTableEntry::BindUpdateConstraints(Binder &, LogicalGet &, LogicalProjection &, LogicalUpdate &, | ||
+ ClientContext &) { | ||
} | ||
|
||
TableFunction SQLiteTableEntry::GetScanFunction(ClientContext &context, unique_ptr<FunctionData> &bind_data) { |