From cbb3efab82c420ded289e1980376d17fa9d10673 Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Fri, 23 May 2025 14:28:25 +0300 Subject: [PATCH] Fuzz: modify rowid_seek_fuzz so that it catches this regression in the future --- tests/integration/fuzz/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/fuzz/mod.rs b/tests/integration/fuzz/mod.rs index a981ce4a1..f7c3860d7 100644 --- a/tests/integration/fuzz/mod.rs +++ b/tests/integration/fuzz/mod.rs @@ -51,7 +51,7 @@ mod tests { let insert = format!( "INSERT INTO t VALUES {}", - (1..10000) + (1..2000) .map(|x| format!("({})", x)) .collect::>() .join(", ") @@ -71,9 +71,9 @@ mod tests { for comp in COMPARISONS.iter() { for order_by in ORDER_BY.iter() { - for max in 0..=10000 { + for max in 0..=2000 { let query = format!( - "SELECT * FROM t WHERE x {} {} {} LIMIT 3", + "SELECT * FROM t WHERE x {} {} {}", comp, max, order_by.unwrap_or("")