We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
According to the ANSI SQL specification, floating point numbers in SQL should be interpreted as decimals. We currently interpret them as floats:
pub struct SqlParserOptions { /// When set to true, SQL parser will parse float as decimal type pub parse_float_as_decimal: bool, default = false
Set default to true and fix regressions in test suite. This will likely involve fixing some bugs in type coercion such as #14272
No response
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
to_timestamp
jatin510
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
According to the ANSI SQL specification, floating point numbers in SQL should be interpreted as decimals. We currently interpret them as floats:
Describe the solution you'd like
Set default to true and fix regressions in test suite. This will likely involve fixing some bugs in type coercion such as #14272
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: