-
Hello,
event_at is of the type TIMESTAMP. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Thanks for your report! According to the document, the query can be written by function
However, there is a bug related to Also, note that |
Beta Was this translation helpful? Give feedback.
-
Fixed by #1215 |
Beta Was this translation helpful? Give feedback.
Thanks for your report! According to the document, the query can be written by function
CAST(... AS ...)
:However, there is a bug related to
TIMESTAMP
s and aliases inGROUP BY
clause, which prevents the system to produce correct outputs for the query above. We will fix it as soon as possible and then you can try it again using the latest commit.Also, note that
DATE
is used for date literals (e.g.INSERT INTO some_stream (some_column) VALUES (DATE 2022-12-12)
) or a type (e.g.CAST(... AS DATE)
) andDAY
is not a function name now (we will recheck our …