cql2 0.3.8__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cql2-0.3.8 → cql2-0.4.1}/.github/dependabot.yml +2 -1
- cql2-0.4.1/.github/workflows/ci.yml +66 -0
- {cql2-0.3.8 → cql2-0.4.1}/.github/workflows/docs.yml +2 -2
- {cql2-0.3.8 → cql2-0.4.1}/.github/workflows/python.yml +48 -57
- {cql2-0.3.8 → cql2-0.4.1}/CHANGELOG.md +32 -1
- {cql2-0.3.8 → cql2-0.4.1}/Cargo.lock +1264 -251
- {cql2-0.3.8 → cql2-0.4.1}/Cargo.toml +12 -11
- cql2-0.4.1/PKG-INFO +14 -0
- {cql2-0.3.8 → cql2-0.4.1}/README.md +1 -1
- {cql2-0.3.8 → cql2-0.4.1}/cli/Cargo.toml +1 -1
- {cql2-0.3.8 → cql2-0.4.1}/cli/src/lib.rs +39 -2
- {cql2-0.3.8 → cql2-0.4.1}/cql2.pyi +2 -11
- {cql2-0.3.8 → cql2-0.4.1}/docs/playground.md +19 -7
- {cql2-0.3.8 → cql2-0.4.1}/docs/python.md +0 -1
- {cql2-0.3.8 → cql2-0.4.1}/pyproject.toml +9 -4
- {cql2-0.3.8 → cql2-0.4.1}/python/Cargo.toml +2 -2
- {cql2-0.3.8 → cql2-0.4.1}/python/src/lib.rs +3 -23
- {cql2-0.3.8 → cql2-0.4.1}/python/tests/test_expr.py +2 -3
- cql2-0.4.1/src/duckdb.rs +89 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/error.rs +4 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/expr.rs +111 -95
- {cql2-0.3.8 → cql2-0.4.1}/src/lib.rs +3 -12
- {cql2-0.3.8 → cql2-0.4.1}/src/parser.rs +1 -0
- cql2-0.4.1/src/sql.rs +446 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/temporal.rs +51 -16
- cql2-0.4.1/tests/cql2testdata.ndjson +112 -0
- cql2-0.4.1/tests/generate_expected_qcounts +25 -0
- cql2-0.4.1/tests/operators_duckdb.rs +49 -0
- cql2-0.4.1/tests/operators_expected.txt +310 -0
- cql2-0.4.1/tests/operators_filter.rs +48 -0
- cql2-0.4.1/tests/operators_tests.txt +213 -0
- cql2-0.4.1/uv.lock +1075 -0
- cql2-0.3.8/.github/workflows/ci.yml +0 -36
- cql2-0.3.8/PKG-INFO +0 -9
- cql2-0.3.8/src/duckdb.rs +0 -234
- cql2-0.3.8/src/operators.rs +0 -193
- cql2-0.3.8/src/operators.yml +0 -114
- cql2-0.3.8/uv.lock +0 -1188
- {cql2-0.3.8 → cql2-0.4.1}/.gitignore +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/CONTRIBUTING.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/LICENSE +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/RELEASING.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/cli/README.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/cli/src/main.rs +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/docs/cli.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/docs/ds-logo-hor--pos.svg +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/docs/examples.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/docs/favicon.png +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/docs/index.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/examples.toml +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause6_01.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause6_02a.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause6_02b.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause6_02c.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause6_02d.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause6_03.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_01.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_02.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_03a.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_03b.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_04.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_05.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_07.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_10.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_12.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_13.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_15.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_16.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_17.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_18.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/clause7_19.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example01.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example02.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example03.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example04.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example05a.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example05b.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example06a.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example06b.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example07.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example08.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example09.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example10.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example11.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example12.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example13.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example14.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example15.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example16.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example17.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example18.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example19.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example20.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example21.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example22.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example23.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example24.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example25.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example26.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example27.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example28.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example29.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example30.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example31.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example32.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example33.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example34.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example35.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example36.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example37.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example38.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example39.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example40.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example41.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example42.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example43.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example44.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example45.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example46.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example47.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example48.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example49.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example50.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example51.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example52.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example53.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example54.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example55.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example56.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example57.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example58.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example59.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example60.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example61.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example62.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example63.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example64.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example65.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example66.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example67.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example68.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example69.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example70.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example71.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example72.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example73.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example74.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example75.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example76.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example77.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example78.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example79.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example80.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example81.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example82.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example83.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example84.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example85.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/example86.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/json/validate.sh +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause6_01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause6_02a.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause6_02b.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause6_02c.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause6_02d.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause6_03.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_02.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_03a.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_03b.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_04.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_05.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_07.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_10.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_12.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_13.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_15.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_16.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_17.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_18.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/clause7_19.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example02.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example03.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example04.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example05a.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example05b.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example06a.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example06b.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example07.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example08.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example09.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example10.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example11.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example12.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example13.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example14.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example15.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example16.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example17.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example18.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example19.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example20.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example21.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example22.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example23.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example24.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example25.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example26.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example27.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example28.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example29.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example30.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example31.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example32.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example33.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example34.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example35.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example36-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example36.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example37.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example38-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example38.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example39.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example40-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example40.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example41.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example42-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example42.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example43-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example43.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example44-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example44.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example45.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example46-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example46.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example47.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example48.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example49-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example49.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example50.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example51.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example52.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example53.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example54-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example54.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example55-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example55.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example56.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example57.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example58.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example59.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example60.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example61.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example62.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example63.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example64.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example65.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example66.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example67.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example68.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example69.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example70.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example71.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example72.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example73.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example74.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example75.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example76.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example77.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example78.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example79.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example80.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example81.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example82.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example83.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example84.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example85-alt01.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example85.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/examples/text/example86.txt +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/mkdocs.yml +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/python/.gitignore +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/python/.python-version +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/python/README.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/python/tests/conftest.py +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/rustfmt.toml +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/scripts/buildwasm +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/scripts/exampleoptions +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/scripts/lint +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/scripts/test +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/cql2.json +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/cql2.pest +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/geometry.rs +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/src/validator.rs +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/README.md +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_01.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02a.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02a.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02b.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02b.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02c.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02c.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02d.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_02d.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_03.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause6_03.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_01.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_02.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_02.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_03a.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_03a.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_03b.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_03b.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_04.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_04.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_05.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_05.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_07.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_07.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_10.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_10.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_12.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_12.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_13.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_13.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_15.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_15.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_16.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_16.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_17.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_17.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_18.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_18.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_19.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/clause7_19.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example01.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example02.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example02.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example03.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example03.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example04.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example04.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example05a.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example05a.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example05b.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example05b.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example06a.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example06a.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example06b.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example06b.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example07.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example07.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example08.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example08.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example09.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example09.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example10.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example10.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example11.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example11.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example12.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example12.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example13.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example13.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example14.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example14.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example15.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example15.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example16.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example16.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example17.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example17.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example18.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example18.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example19.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example19.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example20.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example20.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example21.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example21.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example22.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example22.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example23.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example23.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example24.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example24.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example25.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example25.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example26.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example26.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example27.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example27.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example28.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example28.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example29.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example29.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example30.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example30.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example31.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example31.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example32.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example32.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example33.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example33.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example34.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example34.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example35.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example35.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example36-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example36.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example36.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example37.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example37.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example38-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example38.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example38.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example39.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example39.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example40-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example40.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example40.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example41.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example41.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example42-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example42.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example42.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example43-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example43.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example43.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example44-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example44.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example44.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example45.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example45.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example46-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example46.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example46.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example47.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example47.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example48.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example48.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example49-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example49.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example49.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example50.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example50.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example51.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example51.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example52.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example52.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example53.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example53.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example54-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example54.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example54.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example55-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example55.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example55.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example56.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example56.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example57.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example57.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example58.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example58.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example59.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example59.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example60.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example60.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example61.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example61.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example62.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example62.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example63.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example63.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example64.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example64.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example65.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example65.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example66.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example66.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example67.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example67.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example68.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example68.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example69.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example69.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example70.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example70.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example71.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example71.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example72.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example72.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example73.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example73.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example74.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example74.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example75.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example75.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example76.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example76.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example77.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example77.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example78.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example78.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example79.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example79.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example80.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example80.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example81.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example81.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example82.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example82.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example83.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example83.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example84.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example84.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example85-alt01.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example85.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example85.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example86.json.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/expected/example86.txt.out +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/generate-expected +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/ogc_tests.rs +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/reduce_tests.rs +0 -0
- {cql2-0.3.8 → cql2-0.4.1}/tests/reductions.txt +0 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
|
|
9
|
+
concurrency:
|
|
10
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
11
|
+
cancel-in-progress: true
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
test:
|
|
15
|
+
name: Test
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v5
|
|
19
|
+
- uses: Swatinem/rust-cache@v2
|
|
20
|
+
- name: Format
|
|
21
|
+
run: cargo fmt --check
|
|
22
|
+
- name: Check
|
|
23
|
+
run: cargo check --workspace
|
|
24
|
+
- name: Test
|
|
25
|
+
run: cargo test
|
|
26
|
+
clippy:
|
|
27
|
+
name: Clippy
|
|
28
|
+
runs-on: ubuntu-latest
|
|
29
|
+
steps:
|
|
30
|
+
- uses: actions/checkout@v5
|
|
31
|
+
- uses: Swatinem/rust-cache@v2
|
|
32
|
+
- name: Clippy
|
|
33
|
+
run: cargo clippy --workspace --tests -- -D warnings
|
|
34
|
+
test-python:
|
|
35
|
+
name: Test Python
|
|
36
|
+
runs-on: ubuntu-latest
|
|
37
|
+
strategy:
|
|
38
|
+
matrix:
|
|
39
|
+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
40
|
+
steps:
|
|
41
|
+
- uses: actions/checkout@v5
|
|
42
|
+
- uses: Swatinem/rust-cache@v2
|
|
43
|
+
- uses: astral-sh/setup-uv@v7
|
|
44
|
+
with:
|
|
45
|
+
python-version: ${{ matrix.python-version }}
|
|
46
|
+
- name: Lint
|
|
47
|
+
run: |
|
|
48
|
+
uv run mypy python
|
|
49
|
+
uv run ruff check
|
|
50
|
+
uv run ruff format --check
|
|
51
|
+
- name: Test
|
|
52
|
+
run: uv run pytest
|
|
53
|
+
- name: CLI smoke test
|
|
54
|
+
run: uv run cql2 < examples/text/example01.txt
|
|
55
|
+
build-wasm:
|
|
56
|
+
name: Build wasm
|
|
57
|
+
runs-on: ubuntu-latest
|
|
58
|
+
steps:
|
|
59
|
+
- uses: actions/checkout@v5
|
|
60
|
+
- uses: Swatinem/rust-cache@v2
|
|
61
|
+
- name: Install wasm-pack
|
|
62
|
+
uses: jetli/wasm-pack-action@v0.4.0
|
|
63
|
+
with:
|
|
64
|
+
version: "latest"
|
|
65
|
+
- name: Build WASM
|
|
66
|
+
run: scripts/buildwasm
|
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
GIT_COMMITTER_NAME: ci-bot
|
|
18
18
|
GIT_COMMITTER_EMAIL: ci-bot@example.com
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@v5
|
|
21
21
|
with:
|
|
22
22
|
fetch-depth: 0 # for git describe
|
|
23
23
|
- name: Install Rust
|
|
@@ -29,7 +29,7 @@ jobs:
|
|
|
29
29
|
version: "latest"
|
|
30
30
|
- name: build wasm
|
|
31
31
|
run: scripts/buildwasm
|
|
32
|
-
- uses: astral-sh/setup-uv@
|
|
32
|
+
- uses: astral-sh/setup-uv@v7
|
|
33
33
|
with:
|
|
34
34
|
enable-cache: true
|
|
35
35
|
- name: Install Python
|
|
@@ -15,96 +15,87 @@ permissions:
|
|
|
15
15
|
|
|
16
16
|
jobs:
|
|
17
17
|
linux:
|
|
18
|
-
runs-on:
|
|
18
|
+
runs-on: ubuntu-latest
|
|
19
19
|
strategy:
|
|
20
20
|
matrix:
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
- runner: ubuntu-latest
|
|
29
|
-
target: armv7
|
|
30
|
-
- runner: ubuntu-latest
|
|
31
|
-
target: s390x
|
|
32
|
-
- runner: ubuntu-latest
|
|
33
|
-
target: ppc64le
|
|
21
|
+
target:
|
|
22
|
+
- x86_64
|
|
23
|
+
- x86
|
|
24
|
+
- aarch64
|
|
25
|
+
- armv7
|
|
26
|
+
- s390x
|
|
27
|
+
- ppc64le
|
|
34
28
|
steps:
|
|
35
|
-
- uses: actions/checkout@
|
|
29
|
+
- uses: actions/checkout@v5
|
|
36
30
|
- uses: actions/setup-python@v5
|
|
37
31
|
with:
|
|
38
|
-
python-version: 3.
|
|
32
|
+
python-version: "3.10"
|
|
39
33
|
- name: Build wheels
|
|
40
34
|
uses: PyO3/maturin-action@v1
|
|
35
|
+
env:
|
|
36
|
+
# https://github.com/rust-lang/stacker/issues/79#issuecomment-1497479267
|
|
37
|
+
CFLAGS_s390x_unknown_linux_gnu: -march=z10
|
|
41
38
|
with:
|
|
42
|
-
target: ${{ matrix.
|
|
43
|
-
args: --release --out dist
|
|
39
|
+
target: ${{ matrix.target }}
|
|
40
|
+
args: --release --out dist -i 3.10
|
|
44
41
|
sccache: "true"
|
|
45
42
|
manylinux: auto
|
|
46
43
|
- name: Upload wheels
|
|
47
|
-
uses: actions/upload-artifact@
|
|
44
|
+
uses: actions/upload-artifact@v5
|
|
48
45
|
with:
|
|
49
|
-
name: wheels-linux-${{ matrix.
|
|
46
|
+
name: wheels-linux-${{ matrix.target }}
|
|
50
47
|
path: dist
|
|
51
48
|
|
|
52
49
|
musllinux:
|
|
53
|
-
runs-on:
|
|
50
|
+
runs-on: ubuntu-latest
|
|
54
51
|
strategy:
|
|
55
52
|
matrix:
|
|
56
|
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
-
|
|
60
|
-
|
|
61
|
-
- runner: ubuntu-latest
|
|
62
|
-
target: aarch64
|
|
63
|
-
- runner: ubuntu-latest
|
|
64
|
-
target: armv7
|
|
53
|
+
target:
|
|
54
|
+
- x86_64
|
|
55
|
+
- x86
|
|
56
|
+
- aarch64
|
|
57
|
+
- armv7
|
|
65
58
|
steps:
|
|
66
|
-
- uses: actions/checkout@
|
|
59
|
+
- uses: actions/checkout@v5
|
|
67
60
|
- uses: actions/setup-python@v5
|
|
68
61
|
with:
|
|
69
|
-
python-version: 3.
|
|
62
|
+
python-version: "3.10"
|
|
70
63
|
- name: Build wheels
|
|
71
64
|
uses: PyO3/maturin-action@v1
|
|
72
65
|
with:
|
|
73
|
-
target: ${{ matrix.
|
|
74
|
-
args: --release --out dist
|
|
66
|
+
target: ${{ matrix.target }}
|
|
67
|
+
args: --release --out dist -i 3.10
|
|
75
68
|
sccache: "true"
|
|
76
69
|
manylinux: musllinux_1_2
|
|
77
70
|
- name: Upload wheels
|
|
78
|
-
uses: actions/upload-artifact@
|
|
71
|
+
uses: actions/upload-artifact@v5
|
|
79
72
|
with:
|
|
80
|
-
name: wheels-musllinux-${{ matrix.
|
|
73
|
+
name: wheels-musllinux-${{ matrix.target }}
|
|
81
74
|
path: dist
|
|
82
75
|
|
|
83
76
|
windows:
|
|
84
|
-
runs-on:
|
|
77
|
+
runs-on: windows-latest
|
|
85
78
|
strategy:
|
|
86
79
|
matrix:
|
|
87
|
-
|
|
88
|
-
-
|
|
89
|
-
|
|
90
|
-
- runner: windows-latest
|
|
91
|
-
target: x86
|
|
80
|
+
target:
|
|
81
|
+
- x64
|
|
82
|
+
- x86
|
|
92
83
|
steps:
|
|
93
|
-
- uses: actions/checkout@
|
|
84
|
+
- uses: actions/checkout@v5
|
|
94
85
|
- uses: actions/setup-python@v5
|
|
95
86
|
with:
|
|
96
|
-
python-version: 3.
|
|
97
|
-
architecture: ${{ matrix.
|
|
87
|
+
python-version: "3.10"
|
|
88
|
+
architecture: ${{ matrix.target }}
|
|
98
89
|
- name: Build wheels
|
|
99
90
|
uses: PyO3/maturin-action@v1
|
|
100
91
|
with:
|
|
101
|
-
target: ${{ matrix.
|
|
102
|
-
args: --release --out dist
|
|
92
|
+
target: ${{ matrix.target }}
|
|
93
|
+
args: --release --out dist -i 3.10
|
|
103
94
|
sccache: "true"
|
|
104
95
|
- name: Upload wheels
|
|
105
|
-
uses: actions/upload-artifact@
|
|
96
|
+
uses: actions/upload-artifact@v5
|
|
106
97
|
with:
|
|
107
|
-
name: wheels-windows-${{ matrix.
|
|
98
|
+
name: wheels-windows-${{ matrix.target }}
|
|
108
99
|
path: dist
|
|
109
100
|
|
|
110
101
|
macos:
|
|
@@ -117,18 +108,18 @@ jobs:
|
|
|
117
108
|
- runner: macos-14
|
|
118
109
|
target: aarch64
|
|
119
110
|
steps:
|
|
120
|
-
- uses: actions/checkout@
|
|
111
|
+
- uses: actions/checkout@v5
|
|
121
112
|
- uses: actions/setup-python@v5
|
|
122
113
|
with:
|
|
123
|
-
python-version: 3.
|
|
114
|
+
python-version: "3.10"
|
|
124
115
|
- name: Build wheels
|
|
125
116
|
uses: PyO3/maturin-action@v1
|
|
126
117
|
with:
|
|
127
118
|
target: ${{ matrix.platform.target }}
|
|
128
|
-
args: --release --out dist
|
|
119
|
+
args: --release --out dist -i 3.10
|
|
129
120
|
sccache: "true"
|
|
130
121
|
- name: Upload wheels
|
|
131
|
-
uses: actions/upload-artifact@
|
|
122
|
+
uses: actions/upload-artifact@v5
|
|
132
123
|
with:
|
|
133
124
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
134
125
|
path: dist
|
|
@@ -136,14 +127,14 @@ jobs:
|
|
|
136
127
|
sdist:
|
|
137
128
|
runs-on: ubuntu-latest
|
|
138
129
|
steps:
|
|
139
|
-
- uses: actions/checkout@
|
|
130
|
+
- uses: actions/checkout@v5
|
|
140
131
|
- name: Build sdist
|
|
141
132
|
uses: PyO3/maturin-action@v1
|
|
142
133
|
with:
|
|
143
134
|
command: sdist
|
|
144
135
|
args: --out dist
|
|
145
136
|
- name: Upload sdist
|
|
146
|
-
uses: actions/upload-artifact@
|
|
137
|
+
uses: actions/upload-artifact@v5
|
|
147
138
|
with:
|
|
148
139
|
name: wheels-sdist
|
|
149
140
|
path: dist
|
|
@@ -158,9 +149,9 @@ jobs:
|
|
|
158
149
|
contents: write
|
|
159
150
|
attestations: write
|
|
160
151
|
steps:
|
|
161
|
-
- uses: actions/download-artifact@
|
|
152
|
+
- uses: actions/download-artifact@v6
|
|
162
153
|
- name: Generate artifact attestation
|
|
163
|
-
uses: actions/attest-build-provenance@
|
|
154
|
+
uses: actions/attest-build-provenance@v3
|
|
164
155
|
with:
|
|
165
156
|
subject-path: "wheels-*/*"
|
|
166
157
|
- name: Publish to PyPI
|
|
@@ -6,6 +6,35 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.1] - 2025-10-31
|
|
10
|
+
|
|
11
|
+
## Changed
|
|
12
|
+
|
|
13
|
+
- Deploy abi3 wheels ([#94](https://github.com/developmentseed/cql2-rs/pull/94))
|
|
14
|
+
|
|
15
|
+
## Removed
|
|
16
|
+
|
|
17
|
+
- Python 3.9 ([#94](https://github.com/developmentseed/cql2-rs/pull/94))
|
|
18
|
+
|
|
19
|
+
## [0.4.0] - 2025-09-16
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Reworked SQL generation to use `SqlParser` AST as the target.
|
|
24
|
+
- Modified `to_ducksql` to leverage SQL AST, only changing aspects specific to DuckDB.
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- `filter` method to filter passed-in JSON values.
|
|
29
|
+
- Sample data to run test filters against.
|
|
30
|
+
- 155 tests covering every CQL2 operator.
|
|
31
|
+
- Test runners for both internal `reduce`/`matches` and DuckDB.
|
|
32
|
+
- Exposed `reduce` option in WASM / WASM Playground.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- Numerous issues found with the new tests.
|
|
37
|
+
|
|
9
38
|
## [0.3.8] - 2025-09-09
|
|
10
39
|
|
|
11
40
|
### Changed
|
|
@@ -84,7 +113,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
84
113
|
|
|
85
114
|
Initial release.
|
|
86
115
|
|
|
87
|
-
[Unreleased]: https://github.com/developmentseed/cql2-rs/compare/v0.
|
|
116
|
+
[Unreleased]: https://github.com/developmentseed/cql2-rs/compare/v0.4.1...main
|
|
117
|
+
[0.4.1]: https://github.com/developmentseed/cql2-rs/compare/v0.4.0...v0.4.1
|
|
118
|
+
[0.4.0]: https://github.com/developmentseed/cql2-rs/compare/v0.3.8...v0.4.0
|
|
88
119
|
[0.3.8]: https://github.com/developmentseed/cql2-rs/compare/v0.3.7...v0.3.8
|
|
89
120
|
[0.3.7]: https://github.com/developmentseed/cql2-rs/compare/v0.3.6...v0.3.7
|
|
90
121
|
[0.3.6]: https://github.com/developmentseed/cql2-rs/compare/v0.3.5...v0.3.6
|