Skip to content

Commit 375273b

Browse files
authored
Merge pull request #17 from zstatmanweil/search-operator-fix
Search operator typo fix
2 parents cb760fb + 6c6b547 commit 375273b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/004_search.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ prop_path := replace(att_parts.dotpath, 'properties.', '');
217217

218218
op := CASE _op
219219
WHEN 'eq' THEN '='
220-
WHEN 'ge' THEN '>='
221-
WHEN 'gte' THEN '>'
220+
WHEN 'gte' THEN '>='
221+
WHEN 'gt' THEN '>'
222222
WHEN 'lte' THEN '<='
223223
WHEN 'lt' THEN '<'
224224
WHEN 'ne' THEN '!='

0 commit comments

Comments
 (0)