we do not allow DDL inside BEGIN CONCURRENT, so remove test

This commit is contained in:
Jussi Saurio
2025-09-25 08:50:27 +03:00
parent 7c86e7b9c4
commit 04f9cbfa8d

View File

@@ -304,20 +304,6 @@ fn test_mvcc_update_basic() {
assert_eq!(row, vec![Value::build_text("second")]);
}
#[test]
fn test_mvcc_begin_concurrent_smoke() {
let tmp_db = TempDatabase::new_with_opts(
"test_mvcc_begin_concurrent_smoke.db",
turso_core::DatabaseOpts::new().with_mvcc(true),
);
let conn1 = tmp_db.connect_limbo();
conn1.execute("BEGIN CONCURRENT").unwrap();
conn1
.execute("CREATE TABLE test (id INTEGER, value TEXT)")
.unwrap();
conn1.execute("COMMIT").unwrap();
}
#[test]
fn test_mvcc_concurrent_insert_basic() {
let tmp_db = TempDatabase::new_with_opts(