docs: Docs updates for 0.14.0 release [WIP]#3680
Draft
andygrove wants to merge 6 commits intoapache:mainfrom
Draft
docs: Docs updates for 0.14.0 release [WIP]#3680andygrove wants to merge 6 commits intoapache:mainfrom
andygrove wants to merge 6 commits intoapache:mainfrom
Conversation
Add 9 missing expressions (StringSplit, Right, MakeDate, NextDay, Size, MapContainsKey, MapFromEntries, StructsToCsv, Crc32), add 3 missing operators (CoalesceExec, CollectLimitExec, TakeOrderedAndProjectExec), remove 5 expressions not actually registered (BRound, TryAdd, TryDivide, TryMultiply, TrySubtract), and clarify decomposed expressions (DatePart, Extract, BoolAnd, BoolOr).
Fold compatibility info into the Notes column instead. Expressions are Spark-compatible unless the notes say otherwise.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
N/A - documentation update for upcoming release.
Rationale for this change
Ensure the user guide accurately reflects the current state of supported expressions and operators before the 0.14.0 release.
What changes are included in this PR?
Expressions added (9): StringSplit, Right, MakeDate, NextDay, Size, MapContainsKey, MapFromEntries, StructsToCsv, Crc32
Expressions removed (5): BRound, TryAdd, TryDivide, TryMultiply, TrySubtract — these were documented but have no serde registration in the codebase.
Expressions clarified (4): DatePart, Extract, BoolAnd, BoolOr — added notes that these work via Spark decomposition into other supported expressions.
Operators added (3): CoalesceExec, CollectLimitExec, TakeOrderedAndProjectExec
How are these changes tested?
Documentation-only change. Verified by cross-referencing expression maps in
QueryPlanSerde.scala, operator maps inCometExecRule.scala, and serde implementations.