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
todwvwql=> SELECT '1 mons 1 days 00:00:01.000001'::INTERVAL;
interval
-------------------------
+0-1 +1 +0:00:01.000001
(1 row)
todwvwql=> SELECT '1 mons 1 days 00:00:00.000001'::INTERVAL;
interval
-------------------------
+0-1 +1 +0:00:00.000001
(1 row)
todwvwql=>
In Rising wave:
dev=> SELECT '1 mons 1 days 00:00:01.000001'::INTERVAL; --working fine
?column?
----------------------
1 mon 1 day 00:00:01
(1 row)
dev=> SELECT '1 mons 1 days 00:00:00.000001'::INTERVAL; --here is the issue
ERROR: QueryError: Expr error: Parse error: risingwave_common::types::interval::IntervalUnit
dev=>
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
however, The value will lost because we use miliseconds in IntervalUnit, this one is microseconds level. we should fix this after #4514, but now seems it is untracked in our plan.
Describe the bug
In PostgreSQL:
In Rising wave:
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: