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
v1.2.680-nightly
Unable to cast Interval as a string.
select '1 days'::INTERVAL::STRING;
The text was updated successfully, but these errors were encountered:
Using function to_string() seems to work, but the use-case we have if for CAST(interval as string)
to_string()
CAST(interval as string)
select to_string('1 days'::INTERVAL); to_string('1 days'::INTERVAL)| -----------------------------+ 1 day |
Sorry, something went wrong.
TCeason
Successfully merging a pull request may close this issue.
Search before asking
Version
v1.2.680-nightly
What's Wrong?
Unable to cast Interval as a string.
How to Reproduce?
select '1 days'::INTERVAL::STRING;
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: