From 17d06a1d28b06b2fd6174a0e39f3a9dc0b261bb9 Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Sun, 2 Feb 2025 20:56:32 +0400 Subject: [PATCH] adjust options for logical fuzz test --- 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 5591d13b3..e155a5fb1 100644 --- a/tests/integration/fuzz/mod.rs +++ b/tests/integration/fuzz/mod.rs @@ -211,7 +211,7 @@ mod tests { // unfortunatelly, sqlite behaves weirdly when IS operator is used with TRUE/FALSE constants // e.g. 8 IS TRUE == 1 (although 8 = TRUE == 0) // so, we do not use TRUE/FALSE constants as they will produce diff with sqlite results - .options_str(["1", "0", "NULL", "1.0", "1.5", "-0.5", "-1.0", "'x'"]) + .options_str(["1", "0", "NULL", "2.0", "1.5", "-0.5", "-2.0", "(1 / 0)"]) .build(); let sql = g.create().concat(" ").push_str("SELECT").push(expr).build();