-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: initial PoC Substrait consumer #1
base: main
Are you sure you want to change the base?
Conversation
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename the pull request title in the following format?
or
In the case of PARQUET issues on JIRA the title also supports:
See also: |
Problem was that client was not calling |
@@ -45,6 +45,7 @@ export ARROW_ORC | |||
: ${ARROW_PLASMA:=ON} | |||
export ARROW_PLASMA | |||
: ${ARROW_S3:=ON} | |||
: ${ARROW_SUBSTRAIT:=ON} |
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.
SC2223: This default assignment may cause DoS due to globbing. Quote it.
ℹ️ Expand to see all @sonatype-lift commands
You can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
Command | Usage |
---|---|
@sonatype-lift ignore |
Leave out the above finding from this PR |
@sonatype-lift ignoreall |
Leave out all the existing findings from this PR |
@sonatype-lift exclude <file|issue|path|tool> |
Exclude specified file|issue|path|tool from Lift findings by updating your config.toml file |
Note: When talking to LiftBot, you need to refresh the page to see its response.
Click here to add LiftBot to another repo.
Help us improve LIFT! (Sonatype LiftBot external survey)
Was this a good recommendation for you? Answering this survey will not impact your Lift settings.
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
7500dd7
to
92cb8d2
Compare
92cb8d2
to
a0aac46
Compare
…on the class path
Co-authored-by: David Li <[email protected]>
…SubstraitConsumer.java Co-authored-by: David Li <[email protected]>
Co-authored-by: David Li <[email protected]>
…AceroSubstraitConsumer.java Co-authored-by: David Li <[email protected]>
PoC Java Substrait consumer
C++ Process:
Java side (Java --> JNI --> C++)
Need to review why on Java side why
ArrowReader
is populated with column names but not with any data value information.