limbo/tests
Jussi Saurio bdbd021bbb Fix large inserts to unique indexes hanging
We were incorrectly setting `moved_before` as `false` after checking
for unique constraint violation, but the reality is that after the
uniqueness check, we are already correctly positioned -- if no match
was found, the cursor is positioned at either:

a) no row, or
b) at the first entry that is greater than the key we are inserting.

This means we don't have to move anymore and can just insert.
2025-06-12 12:25:17 +03:00
..
integration Fix large inserts to unique indexes hanging 2025-06-12 12:25:17 +03:00
Cargo.toml add anyhow to workspace dependency 2025-06-10 10:50:39 -03:00
lib.rs centralize Rust integration and regression tests 2025-01-21 15:41:09 +07:00
README.md centralize Rust integration and regression tests 2025-01-21 15:41:09 +07:00

Integration and regression test suite.


# run all tests
cargo test 

# run individual test
cargo test test_sequential_write -- --nocapture