Implement SQLiteDatabase::MakeBatch

pull/764/head
Andrew Chow 4 years ago
parent 727e6b2a4e
commit 6045f77003

@ -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…
Cancel
Save