Skip to content

Commit

Permalink
test: update test case for multiple IN statements
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra committed Nov 17, 2020
1 parent d48b3b6 commit 7d9922d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1918,7 +1918,7 @@
"statements": [
"CREATE STREAM INPUT (ID INT KEY, IGNORED INT) WITH (kafka_topic='test_topic', value_format='JSON');",
"CREATE TABLE AGGREGATE AS SELECT ID, COUNT(1) AS COUNT FROM INPUT GROUP BY ID;",
"SELECT * FROM AGGREGATE WHERE ID IN (COUNT + 1);"
"SELECT * FROM AGGREGATE WHERE ID IN (2, COUNT + 1, 3);"
],
"expectedError": {
"type": "io.confluent.ksql.rest.entity.KsqlStatementErrorMessage",
Expand Down

0 comments on commit 7d9922d

Please sign in to comment.