You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I would like to write a query like
❯ select*from foo where x < now() -'1 day';
Here is what happens today
❯ create table foo(x timestamp) asselect'2023-03-01'::timestamp;
0 rows inset. Query took 0.002 seconds.
❯ select*from foo;
+---------------------+
| x |
+---------------------+
| 2023-03-01T00:00:00 |
+---------------------+1 row inset. Query took 0.001 seconds.
❯ select*from foo where x < now() -'1 day';
Internal error: The type of Timestamp(Nanosecond, Some("+00:00")) Minus Utf8 of binary physical should be same. This was likely caused by a bug in DataFusion's code and we would welcome that you file an bug report in our issue tracker
Describe the solution you'd like
I would like the query to work (by adding coercion rules to automatically coerce string --> interval if appropriate)
Describe alternatives you've considered
N/A
Additional context
I think we will need to fix #5650 and #5651
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I would like to write a query like
Here is what happens today
Describe the solution you'd like
I would like the query to work (by adding coercion rules to automatically coerce string --> interval if appropriate)
Describe alternatives you've considered
N/A
Additional context
I think we will need to fix #5650 and #5651
The text was updated successfully, but these errors were encountered: