enable indices in java sdk

This commit is contained in:
Nikita Sivukhin
2025-08-13 16:46:25 +04:00
parent 0f1d954319
commit d1eab18670

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, false) {
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());