From f0c2c377c4e2dc6d8929401c0037e419bc0089e9 Mon Sep 17 00:00:00 2001 From: meteorgan Date: Mon, 28 Jul 2025 01:01:03 +0800 Subject: [PATCH] fix typo --- tests/integration/fuzz/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/fuzz/mod.rs b/tests/integration/fuzz/mod.rs index 1eab15322..5a5216c1a 100644 --- a/tests/integration/fuzz/mod.rs +++ b/tests/integration/fuzz/mod.rs @@ -604,7 +604,7 @@ mod tests { query.push_str(select_statement); } - // if the right most SELECT is a VALUES claude, no limit is not allowed + // if the right most SELECT is a VALUES clause, no limit is not allowed if rng.random_bool(0.8) && !has_right_most_values { let limit_val = rng.random_range(0..=MAX_LIMIT_VALUE); // LIMIT 0 is valid query = format!("{query} LIMIT {limit_val}");