mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
Implement SQLiteDatabase::MakeBatch
This commit is contained in:
parent
727e6b2a4e
commit
6045f77003
1 changed files with 2 additions and 1 deletions
|
@ -262,7 +262,8 @@ void SQLiteDatabase::Close()
|
|||
|
||||
std::unique_ptr<DatabaseBatch> SQLiteDatabase::MakeBatch(bool flush_on_close)
|
||||
{
|
||||
return nullptr;
|
||||
// We ignore flush_on_close because we don't do manual flushing for SQLite
|
||||
return MakeUnique<SQLiteBatch>(*this);
|
||||
}
|
||||
|
||||
SQLiteBatch::SQLiteBatch(SQLiteDatabase& database)
|
||||
|
|
Loading…
Add table
Reference in a new issue