Fix incorrect translation of <= from json logic to SQL

This commit is contained in:
Raphael Michel
2022-04-06 18:56:53 +02:00
parent 4f25d8ba89
commit b699e8977a

View File

@@ -46,7 +46,7 @@ class GreaterEqualThan(Func):
class LowerEqualThan(Func):
arg_joiner = ' < '
arg_joiner = ' <= '
arity = 2
function = ''