This commit is contained in:
Pere Diaz Bou
2024-11-16 17:08:22 +01:00
parent d1dee484df
commit 569e98cb32
2 changed files with 5 additions and 1 deletions

View File

@@ -2825,6 +2825,10 @@ mod tests {
fn exists(&mut self, _key: &OwnedValue) -> Result<CursorResult<bool>> {
unimplemented!()
}
fn create_tree(&mut self, _flags: usize) -> u32 {
unimplemented!()
}
}
#[test]

View File

@@ -885,7 +885,7 @@ fn sqlite3_errstr_impl(rc: i32) -> *const std::ffi::c_char {
"datatype mismatch", // SQLITE_MISMATCH
"bad parameter or other API misuse", // SQLITE_MISUSE
#[cfg(feature = "lfs")]
"", // SQLITE_NOLFS
"", // SQLITE_NOLFS
#[cfg(not(feature = "lfs"))]
"large file support is disabled", // SQLITE_NOLFS
"authorization denied", // SQLITE_AUTH