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
time
timestamp
For an SQL field that has time whiteout date component (Time), with the current Denodo dialect, data is converted to timestamp.
Time
For example, the value of 19:30 becomes 1970-01-01 19:30:00.
19:30
1970-01-01 19:30:00
--
Since Spark does not have time format, the only solution that would preserve values identity would be converting it to string.
string
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
For an SQL field that has time whiteout date component (
Time
), with the current Denodo dialect, data is converted to timestamp.For example, the value of
19:30
becomes1970-01-01 19:30:00
.Code and/or configuration snippet that caused the issue
--
Expected behavior
Since Spark does not have
time
format, the only solution that would preserve values identity would be converting it tostring
.Context
The text was updated successfully, but these errors were encountered: