Minor.
GitOrigin-RevId: 17528428dd1741527565d1b2bc012928d3f24c80
This commit is contained in:
parent
be299897c3
commit
129e673769
@ -192,9 +192,9 @@ Result<SqliteDb> SqliteDb::do_open_with_key(CSlice path, const DbKey &db_key, in
|
|||||||
LOG(INFO) << "Try Sqlcipher compatibility mode with version=" << cipher_version;
|
LOG(INFO) << "Try Sqlcipher compatibility mode with version=" << cipher_version;
|
||||||
TRY_STATUS(db.exec(PSLICE() << "PRAGMA cipher_compatibility = " << cipher_version));
|
TRY_STATUS(db.exec(PSLICE() << "PRAGMA cipher_compatibility = " << cipher_version));
|
||||||
}
|
}
|
||||||
db.set_cipher_version(cipher_version);
|
|
||||||
}
|
}
|
||||||
TRY_STATUS_PREFIX(db.check_encryption(), "Can't open database: ");
|
TRY_STATUS_PREFIX(db.check_encryption(), "Can't open database: ");
|
||||||
|
db.set_cipher_version(cipher_version);
|
||||||
return std::move(db);
|
return std::move(db);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -202,7 +202,7 @@ void SqliteDb::set_cipher_version(int32 cipher_version) {
|
|||||||
raw_->set_cipher_version(cipher_version);
|
raw_->set_cipher_version(cipher_version);
|
||||||
}
|
}
|
||||||
|
|
||||||
optional<int32> SqliteDb::get_cipher_version() {
|
optional<int32> SqliteDb::get_cipher_version() const {
|
||||||
return raw_->get_cipher_version();
|
return raw_->get_cipher_version();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ class SqliteDb {
|
|||||||
detail::RawSqliteDb::with_db_path(main_path, f);
|
detail::RawSqliteDb::with_db_path(main_path, f);
|
||||||
}
|
}
|
||||||
|
|
||||||
optional<int32> get_cipher_version();
|
optional<int32> get_cipher_version() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
explicit SqliteDb(std::shared_ptr<detail::RawSqliteDb> raw) : raw_(std::move(raw)) {
|
explicit SqliteDb(std::shared_ptr<detail::RawSqliteDb> raw) : raw_(std::move(raw)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user