-
Notifications
You must be signed in to change notification settings - Fork 62
v0.7 to v0.8 upgrade
yliuuuu edited this page Nov 2, 2022
·
3 revisions
- Parsing of ORDER BY clauses will no longer populate the AST with defaults for the 'sort specification' (i.e., ASC or DESC) or 'nulls specification' (i.e., NULLS FIRST or NULLS LAST) when they are not provided in the query text. Defaulting of sort order is moved to the evaluator.
- Replaced union, intersect, except IR nodes with common bag_op IR nodes.
- Renamed PassResult to PlannerPassResult for clarity. (This is part of the experimental query planner API.)
- Removed [ExprValueType.typeNames] as needed by the future work of legacy parser removal and OTS.
For a comprehensive list of added features, bug fixes, and more -- please refer to the official v0.8.0 release summary.
For examples of code upgrade, please reference the version-upgrade/v0.7-to-v0.8-upgrade
module
within partiql-lang-kotlin
.
- General
- Tutorials
- Documentation
- Clauses
- Testing
- Serde
- Upgrade Guides
- Design & Development Documents