Skip to content

Commit

Permalink
Fix CQL2 parser for BETWEEN operator
Browse files Browse the repository at this point in the history
  • Loading branch information
drnextgis committed Mar 13, 2024
1 parent 634122f commit 0e48cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pgstac/sql/002b_cql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ BEGIN
IF op = 'between' THEN
args = jsonb_build_array(
args->0,
args->1->0,
args->1->1
args->1,
args->2
);
END IF;

Expand Down

0 comments on commit 0e48cfa

Please sign in to comment.