We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51f19dc commit 3525a01Copy full SHA for 3525a01
src/pgstac/sql/002b_cql.sql
@@ -344,8 +344,8 @@ BEGIN
344
IF op = 'between' THEN
345
args = jsonb_build_array(
346
args->0,
347
- args->1->0,
348
- args->1->1
+ args->1,
+ args->2
349
);
350
END IF;
351
src/pgstac/tests/pgtap/004_search.sql
@@ -401,7 +401,7 @@ SELECT results_eq($$
401
"op": "between",
402
"args": [
403
{ "property": "eo:cloud_cover" },
404
- [ 0, 50 ]
+ 0, 50
405
]
406
}
407
0 commit comments