We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83dd1fd commit 579c903Copy full SHA for 579c903
1 file changed
src_cpp/py_database.cpp
@@ -54,8 +54,7 @@ PyDatabase::PyDatabase(const std::string& databasePath, uint64_t bufferPoolSize,
54
systemConfig.checkpointThreshold = static_cast<uint64_t>(checkpointThreshold);
55
}
56
database = std::make_unique<Database>(databasePath, systemConfig);
57
- kuzu::extension::ExtensionUtils::addTableFunc<kuzu::PandasScanFunction>(
58
- &kuzu::transaction::DUMMY_TRANSACTION, *database);
+ kuzu::extension::ExtensionUtils::addTableFunc<kuzu::PandasScanFunction>(*database);
59
storageDriver = std::make_unique<StorageDriver>(database.get());
60
py::gil_scoped_acquire acquire;
61
if (kuzu::importCache.get() == nullptr) {
0 commit comments