limbo/tests/fuzz
Pekka Enberg edd45ff7b8 Improve MVCC DX by dropping --experimental-mvcc flag
The DX is right now pretty terrible:

```
penberg@vonneumann turso % cargo run -- hello.db
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.15s
     Running `target/debug/tursodb hello.db`
Turso v0.4.0-pre.18
Enter ".help" for usage hints.
Did you know that Turso supports live materialized views? Type .manual materialized-views to learn more.
This software is in BETA, use caution with production data and ensure you have backups.
turso> PRAGMA journal_mode = 'experimental_mvcc';
  × Invalid argument supplied: MVCC is not enabled. Enable it with `--experimental-mvcc` flag in the CLI or by setting the MVCC option in `DatabaseOpts`

turso>
```

To add insult to the injury, many SDKs don't even have a way to enable
MVCC via database options. Therefore, let's remove the flag altogether.
2025-12-19 12:59:42 +02:00
..
grammar_generator.rs tests: Separate integration and fuzz tests 2025-10-22 13:05:29 +03:00
journal_mode.rs Improve MVCC DX by dropping --experimental-mvcc flag 2025-12-19 12:59:42 +02:00
mod.rs Improve MVCC DX by dropping --experimental-mvcc flag 2025-12-19 12:59:42 +02:00
orderby_collation.rs clippy 2025-12-16 23:11:31 -03:00
rowid_alias.rs remove unused TempDatabase argument requirement for limbo_exec_rows 2025-12-10 15:21:03 -03:00
test_join_optimizer.rs Add greedy join ordering for large queries (>12 tables) 2025-12-11 09:31:38 +02:00