Bundled SQLCipher is now based on SQLite > 3.35

This commit is contained in:
gwenn 2022-04-21 13:34:20 +02:00
parent 26c444341c
commit c15fa489ad

View File

@ -2098,7 +2098,7 @@ mod test {
}
#[test]
#[cfg(all(feature = "bundled", not(feature = "bundled-sqlcipher")))] // SQLite >= 3.35.0
#[cfg(feature = "modern_sqlite")]
fn test_returning() -> Result<()> {
let db = Connection::open_in_memory()?;
db.execute_batch("CREATE TABLE foo(x INTEGER PRIMARY KEY)")?;