Fix build errors with SQLCipher

This commit is contained in:
gwenn 2022-04-21 15:26:46 +02:00
parent 8370970b0b
commit 8f40fd1cf3

View File

@ -408,13 +408,13 @@ pub unsafe fn error_from_handle(db: *mut ffi::sqlite3, code: c_int) -> Error {
} }
#[cold] #[cold]
#[cfg(not(feature = "modern_sqlite"))] #[cfg(not(all(feature = "modern_sqlite", not(feature = "bundled-sqlcipher"))))] // SQLite >= 3.38.0
pub unsafe fn error_with_offset(db: *mut ffi::sqlite3, code: c_int, sql: &str) -> Error { pub unsafe fn error_with_offset(db: *mut ffi::sqlite3, code: c_int, _sql: &str) -> Error {
error_from_handle(db, code) error_from_handle(db, code)
} }
#[cold] #[cold]
#[cfg(feature = "modern_sqlite")] // 3.38.0 #[cfg(all(feature = "modern_sqlite", not(feature = "bundled-sqlcipher")))] // SQLite >= 3.38.0
pub unsafe fn error_with_offset(db: *mut ffi::sqlite3, code: c_int, sql: &str) -> Error { pub unsafe fn error_with_offset(db: *mut ffi::sqlite3, code: c_int, sql: &str) -> Error {
if db.is_null() { if db.is_null() {
error_from_sqlite_code(code, None) error_from_sqlite_code(code, None)