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

@@ -68,7 +68,7 @@ pub extern "system" fn Java_tech_turso_core_TursoDB_openUtf8<'local>(
}
};
let db = match Database::open_file(io.clone(), &path, false, true, turso_core::MvccMode::Noop) {
let db = match Database::open_file(io.clone(), &path, false, true) {
Ok(db) => db,
Err(e) => {
set_err_msg_and_throw_exception(&mut env, obj, TURSO_ETC, e.to_string());