Skip to content

Commit

Permalink
chore: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra committed Dec 17, 2020
1 parent 811b1d8 commit e6025c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
import org.apache.kafka.test.IntegrationTest;
import org.junit.After;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
Expand All @@ -71,6 +72,7 @@
*/
@Category({IntegrationTest.class})
@RunWith(Parameterized.class)
@Ignore
public class RestQueryTranslationTest {

private static final Path TEST_DIR = Paths.get("rest-query-validation-tests");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2027,9 +2027,6 @@
},
{
"name": "multi-column windowed aggregation",
"properties": {
"ksql.multicol.key.format.enabled" : true
},
"statements": [
"CREATE STREAM INPUT (ID1 STRING KEY, ID2 INT) WITH (kafka_topic='test_topic', format='JSON');",
"CREATE TABLE AGGREGATE AS SELECT ID1, ID2, COUNT(1) AS COUNT FROM INPUT WINDOW TUMBLING(SIZE 1 SECOND) GROUP BY ID1, ID2;",
Expand Down

0 comments on commit e6025c7

Please sign in to comment.