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
Repro:
SELECT DATE '1998-12-01' - INTERVAL '95' DAY;
SELECT
pq: unsupported binary operator: <date> - <string>
Expected: #3 should return 0 rows
SQL shell transcript:
root@:26257/tpch> SELECT DATE '1998-12-01' - INTERVAL '95' DAY; +--------------------------------+ | DATE '1998-12-01' - '0m95d0ns' | +--------------------------------+ | 1998-08-28 00:00:00+00:00 | +--------------------------------+ (1 row) --- I hit "up" then "enter" here root@:26257/tpch> SELECT DATE '1998-12-01' - '0m95d0ns'; pq: unsupported binary operator: <date> - <string>
The text was updated successfully, but these errors were encountered:
knz
Successfully merging a pull request may close this issue.
Repro:
SELECT DATE '1998-12-01' - INTERVAL '95' DAY;
SELECT
and run it again. You'll get the errorpq: unsupported binary operator: <date> - <string>
.Expected: #3 should return 0 rows
SQL shell transcript:
The text was updated successfully, but these errors were encountered: