-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
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
WINDOWSTART not recognized for GROUP BY #5595
Labels
Comments
More insights:
While |
its fixed ? i got Unknown column WINDOWSTART in latest ksqldb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When creating a windowed table, trying to use the
WINDOWSTART
in GROUP BY generates an errorTo Reproduce
CREATE STREAM s1 (a VARCHAR, b INT) WITH (kafka_topic='s1', partitions=1, value_format = 'avro');
CREATE TABLE t1 AS SELECT count(*) FROM s1 WINDOW TUMBLING (SIZE 10 MINUTES) GROUP BY a EMIT CHANGES;
SELECT count(*), WINDOWSTART FROM t1 GROUP BY WINDOWSTART EMIT CHANGES;
Unknown column WINDOWSTART.
Note that running
SELECT WINDOWSTART FROM t1 EMIT CHANGES;
works successfully in this scenario.Expected behavior
Grouping on
WINDOWSTART
should work like for any other table column.Actual behaviour
Unknown column WINDOWSTART.
The text was updated successfully, but these errors were encountered: