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
is_numeric
arrow-rs has some functions to check data type, and the logic is also in datafusion, for example, https://docs.rs/arrow/7.0.0/arrow/datatypes/enum.DataType.html#method.is_numeric
arrow-rs
We should reduce the redundancy in DataFusion to make the codebase clear.
Originally posted by @liukun4515 in #1606 (comment)
The text was updated successfully, but these errors were encountered:
binary_rule.rs
This is a good one -- just delete some code from DataFusion 👍
Sorry, something went wrong.
is_numeric in arrow-rs seems not to be same as in arrow-datafusion because DataType::Decimal is not included.
arrow-datafusion
DataType::Decimal
@HaoYang670
In the PG or Spark, the decimal is included in the numeric. Because the decimal is in development, some codes may be not consistent.
numeric
Now we can focus on other issues, and deal with them after other stabilization.
Successfully merging a pull request may close this issue.
arrow-rshas some functions to check data type, and the logic is also in datafusion, for example, https://docs.rs/arrow/7.0.0/arrow/datatypes/enum.DataType.html#method.is_numericWe should reduce the redundancy in DataFusion to make the codebase clear.
Originally posted by @liukun4515 in #1606 (comment)
The text was updated successfully, but these errors were encountered: