remove mvvmode and set logical log as default

This commit is contained in:
Pere Diaz Bou
2025-09-18 18:03:53 +02:00
parent 0e5b0fe8c4
commit ff3c79d5d7
23 changed files with 66 additions and 216 deletions

View File

@@ -151,13 +151,7 @@ pub unsafe extern "C" fn sqlite3_open(
Err(_) => return SQLITE_CANTOPEN,
},
};
match turso_core::Database::open_file(
io.clone(),
filename_str,
false,
false,
turso_core::MvccMode::Noop,
) {
match turso_core::Database::open_file(io.clone(), filename_str, false, false) {
Ok(db) => {
let conn = db.connect().unwrap();
let filename = match filename_str {