Add more column <op> column binary op possibilities to fuzzer

This commit is contained in:
Jussi Saurio
2025-02-17 10:57:58 +02:00
parent bece5b601a
commit 6940ca84bd

View File

@@ -643,7 +643,15 @@ mod tests {
.concat(" ")
.push_str("(")
.push(column)
.push(g.create().choice().options_str(["+", "-"]).build())
.push(
g.create()
.choice()
.options_str([
"+", "-", "*", "/", "||", "=", "<>", ">", "<", ">=", "<=", "IS",
"IS NOT",
])
.build(),
)
.push(column)
.push_str(")")
.build(),