From 38e08253c88710cafe4384f855be16083fc0059c Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Tue, 30 Sep 2025 10:01:18 +0300 Subject: [PATCH] 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. --- tests/integration/fuzz/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/integration/fuzz/mod.rs b/tests/integration/fuzz/mod.rs index f5e96dee2..f343bc043 100644 --- a/tests/integration/fuzz/mod.rs +++ b/tests/integration/fuzz/mod.rs @@ -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