mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-08 18:54:21 +01:00
Unignore ALTER TABLE fuzz test
We caught a pretty bad bug quite late because this fuzz test only ran on btree changes - let's run it on every CI run but with less iterations than before.
This commit is contained in:
@@ -2494,7 +2494,6 @@ mod tests {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
pub fn fuzz_long_create_table_drop_table_alter_table() {
|
||||
let db = TempDatabase::new_empty(true);
|
||||
let limbo_conn = db.connect_limbo();
|
||||
@@ -2515,7 +2514,7 @@ mod tests {
|
||||
|
||||
let mut undroppable_cols = HashSet::new();
|
||||
|
||||
for iteration in 0..50000 {
|
||||
for iteration in 0..5000 {
|
||||
println!("iteration: {iteration} (seed: {seed})");
|
||||
let operation = rng.random_range(0..100); // 0: create, 1: drop, 2: alter, 3: alter rename
|
||||
|
||||
|
||||
Reference in New Issue
Block a user