Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
partiql-cli-1.2.0.zip | 2025-03-12 | 26.0 MB | |
partiql-cli-1.2.0.tgz | 2025-03-12 | 25.3 MB | |
README.md | 2025-03-12 | 1.3 kB | |
v1.2.0 source code.tar.gz | 2025-03-12 | 1.4 MB | |
v1.2.0 source code.zip | 2025-03-12 | 2.2 MB | |
Totals: 5 Items | 54.8 MB | 0 |
Summary 🕙
This release is highlighted by the addition of the interval data type and the let clause.
- Added support for SQL-standard interval data types (i.e. YEAR, MONTH, DAY, HOUR, etc.) in PartiQL. Users can now perform complex date calculations such as DATE '2025-01-01' + INTERVAL '1-5' YEAR TO MONTH
and TIME '12:30:01.05' + INTERVAL '5:2:1.345' HOUR TO SECOND
.
- Added support for the LET clause, enabling users to write queries such as:
SELECT area * c.height AS volume
FROM cylinders c
LET 3.14 * c.radius * c.radius AS area;
Contributions
- Update README.md by @mrugeshgharat in https://github.com/partiql/partiql-lang-kotlin/pull/1743
- Add implementation of LET clause and LetTests by @lucaxchen in https://github.com/partiql/partiql-lang-kotlin/pull/1745
- Adds support for the interval type by @johnedquinn in https://github.com/partiql/partiql-lang-kotlin/pull/1741
- Releases v1.2.0 by @johnedquinn in https://github.com/partiql/partiql-lang-kotlin/pull/1747
New Contributors
- @mrugeshgharat made their first contribution in https://github.com/partiql/partiql-lang-kotlin/pull/1743
- @lucaxchen made their first contribution in https://github.com/partiql/partiql-lang-kotlin/pull/1745
Full Changelog: https://github.com/partiql/partiql-lang-kotlin/compare/v1.1.0...v1.2.0