mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-12-23 08:21:09 +00:00
11 lines
349 B
Rust
11 lines
349 B
Rust
use crate::common::TempDatabase;
|
|
|
|
/// Tests that require Page 1 to exist on an empty DB
|
|
#[turso_macros::test(mvcc)]
|
|
fn test_page1_init(db: TempDatabase) {
|
|
let conn = db.connect_limbo();
|
|
|
|
conn.execute("values (1) intersect values (1);").unwrap();
|
|
conn.execute("select group_concat(name) over () from sqlite_schema;")
|
|
.unwrap();
|
|
}
|