Fix a couple other merge issues
This commit is contained in:
parent
b0f4e0b997
commit
2d68e246fb
|
@ -706,7 +706,7 @@ public:
|
|||
void init(IScheduler* scheduler, const char* clusterFile, const std::string& bgBasePath) override {
|
||||
TransactionExecutorBase::init(scheduler, clusterFile, bgBasePath);
|
||||
for (int i = 0; i < options.numDatabases; i++) {
|
||||
fdb::Database db(clusterFile);
|
||||
fdb::Database db(this->clusterFile);
|
||||
databases.push_back(db);
|
||||
}
|
||||
}
|
||||
|
@ -716,9 +716,9 @@ public:
|
|||
return databases[idx];
|
||||
}
|
||||
|
||||
private:
|
||||
void release() { databases.clear(); }
|
||||
|
||||
private:
|
||||
std::vector<fdb::Database> databases;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue