-
Notifications
You must be signed in to change notification settings - Fork 74
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
Short type mismatch for intervals between the doc and the implementation #240
Comments
ajegou
pushed a commit
to ajegou/substrait-java
that referenced
this issue
Mar 29, 2024
…rait-io#240 According to the documentation (https://substrait.io/extensions/#function-signature-compound-names) the short types for IntervalDay and IntervalYear are iday and iyear
ajegou
added a commit
to ajegou/substrait-java
that referenced
this issue
Mar 29, 2024
…rait-io#240 According to the documentation (https://substrait.io/extensions/#function-signature-compound-names) the short types for IntervalDay and IntervalYear are iday and iyear
ajegou
added a commit
to ajegou/substrait-java
that referenced
this issue
Mar 29, 2024
…rait-io#240 According to the documentation (https://substrait.io/extensions/#function-signature-compound-names) the short types for IntervalDay and IntervalYear are iday and iyear
vbarua
pushed a commit
that referenced
this issue
Mar 29, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the documentation short types for
interval_day
andinterval_year
areiday
iyear
:but the code that does the mapping between type and short type uses
day
andyear
instead:and substrait fails to find the function when loading a logical plan, for example:
The text was updated successfully, but these errors were encountered: