fix: Fix The operator "<=>" is not permitted in MySQL (#6158)

See https://dev.mysql.com/doc/refman/8.4/en/comparison-operators.html#operator_equal-to
This commit is contained in:
Adrien Poupa 2025-01-05 12:14:20 -05:00 committed by GitHub
parent 908f157528
commit bfd1cba2d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,6 +12,7 @@ const operators = transform(
'<', '<',
'>', '>',
'<=', '<=',
'<=>',
'>=', '>=',
'<>', '<>',
'!=', '!=',