Skip to content

Commit 982d20e

Browse files
authored
Merge pull request #30 from Mytherin/interfacechange
Update create catalog/transaction manager APIs
2 parents c517f54 + ff0be0d commit 982d20e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sqlite_storage.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
namespace duckdb {
1414

15-
static unique_ptr<Catalog> SQLiteAttach(AttachedDatabase &db, const string &name, AttachInfo &info,
15+
static unique_ptr<Catalog> SQLiteAttach(StorageExtensionInfo *info, AttachedDatabase &db, const string &name, AttachInfo &info,
1616
AccessMode access_mode) {
1717
return make_unique<SQLiteCatalog>(db, info.path, access_mode);
1818
}
1919

20-
static unique_ptr<TransactionManager> SQLiteCreateTransactionManager(AttachedDatabase &db, Catalog &catalog) {
20+
static unique_ptr<TransactionManager> SQLiteCreateTransactionManager(StorageExtensionInfo *info, AttachedDatabase &db, Catalog &catalog) {
2121
auto &sqlite_catalog = (SQLiteCatalog &)catalog;
2222
return make_unique<SQLiteTransactionManager>(db, sqlite_catalog);
2323
}

0 commit comments

Comments
 (0)