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? 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
sa.Time() currently can't be used, because it gets mapped to SQL's TIME type, and CrateDB doesn't know it.
sa.Time()
TIME
Exception calling application: (crate.client.exceptions.ProgrammingError) SQLParseException[Cannot find data type: time]
On the other hand, using sa.Date() works, and gets mapped to TIMESTAMP WITHOUT TIME ZONE well.
sa.Date()
TIMESTAMP WITHOUT TIME ZONE
The text was updated successfully, but these errors were encountered:
Possibly related to:
Thanks, @surister.
Sorry, something went wrong.
No branches or pull requests
Problem
sa.Time()
currently can't be used, because it gets mapped to SQL'sTIME
type, and CrateDB doesn't know it.On the other hand, using
sa.Date()
works, and gets mapped toTIMESTAMP WITHOUT TIME ZONE
well.The text was updated successfully, but these errors were encountered: