-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-40055: [Java][Docs] Simplify use of Filter and Expression into Dataset Substrait #40056
Conversation
|
} | ||
} | ||
|
||
.. code-block:: text | ||
|
||
ADD_TEN_TO_COLUMN_N_REGIONKEY CONCAT_COLUMNS_N_NAME_AND_N_COMMENT | ||
column-1 column-2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@davisusanibar I guess this column name changes occur from the Substrait end?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is.
I just created this issue for enhancements "Produce projection/filter extended expressions with predefined column names" substrait-io/substrait-java#229
while (reader.loadNextBatch()) { | ||
System.out.println( | ||
reader.getVectorSchemaRoot().contentToTSVString()); | ||
System.out.println(reader.getVectorSchemaRoot().contentToTSVString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: does this need formatting. I am merely asking this comparing with the existing code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll review how a linter will be configured/implemented for Java code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@davisusanibar thank you for working on this. PR LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit a03d957. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 4 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…to Dataset Substrait (apache#40056) ### Rationale for this change Simplify creation of SQL Expression Filter and Projections into Arrow Java Dataset module using new [Substrait Feature for SQL Expressions](https://github.com/substrait-io/substrait-java/releases/tag/v0.26.0). ### What changes are included in this PR? Update Apache Arrow Java Dataset Substrait documentation ### Are these changes tested? Yes ### Are there any user-facing changes? No * Closes: apache#40055 Authored-by: david dali susanibar arce <[email protected]> Signed-off-by: David Li <[email protected]>
…to Dataset Substrait (apache#40056) ### Rationale for this change Simplify creation of SQL Expression Filter and Projections into Arrow Java Dataset module using new [Substrait Feature for SQL Expressions](https://github.com/substrait-io/substrait-java/releases/tag/v0.26.0). ### What changes are included in this PR? Update Apache Arrow Java Dataset Substrait documentation ### Are these changes tested? Yes ### Are there any user-facing changes? No * Closes: apache#40055 Authored-by: david dali susanibar arce <[email protected]> Signed-off-by: David Li <[email protected]>
…to Dataset Substrait (apache#40056) ### Rationale for this change Simplify creation of SQL Expression Filter and Projections into Arrow Java Dataset module using new [Substrait Feature for SQL Expressions](https://github.com/substrait-io/substrait-java/releases/tag/v0.26.0). ### What changes are included in this PR? Update Apache Arrow Java Dataset Substrait documentation ### Are these changes tested? Yes ### Are there any user-facing changes? No * Closes: apache#40055 Authored-by: david dali susanibar arce <[email protected]> Signed-off-by: David Li <[email protected]>
Rationale for this change
Simplify creation of SQL Expression Filter and Projections into Arrow Java Dataset module using new Substrait Feature for SQL Expressions.
What changes are included in this PR?
Update Apache Arrow Java Dataset Substrait documentation
Are these changes tested?
Yes
Are there any user-facing changes?
No