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:
Jussi Saurio
2025-09-30 10:01:18 +03:00
parent 6bff9e53e5
commit 38e08253c8

View File

@@ -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