From c060905d00a02815349b23c05e5995a8c40a0171 Mon Sep 17 00:00:00 2001 From: meteorgan Date: Sat, 21 Jun 2025 23:18:02 +0800 Subject: [PATCH] add INTERSECT to compound_select_fuzz --- 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 5c31c0a20..f6221265d 100644 --- a/tests/integration/fuzz/mod.rs +++ b/tests/integration/fuzz/mod.rs @@ -584,7 +584,7 @@ mod tests { )); } - const COMPOUND_OPERATORS: [&str; 2] = [" UNION ALL ", " UNION "]; + const COMPOUND_OPERATORS: [&str; 3] = [" UNION ALL ", " UNION ", " INTERSECT "]; let mut query = String::new(); for (i, select_statement) in select_statements.iter().enumerate() {