Skip to content

Commit

Permalink
Disable window function
Browse files Browse the repository at this point in the history
  • Loading branch information
tuteng committed Apr 1, 2020
1 parent fde4835 commit 3849235
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ public void testWindowFunction(String type, String[] expectedResults) throws Exc
getFunctionInfoNotFound(functionName);
}

@Test(groups="function")
@Test(enabled = false, groups="function")
public void testSlidingCountWindowTest() throws Exception {
String[] EXPECTED_RESULTS = {
"0,1,2,3,4",
Expand Down Expand Up @@ -1118,7 +1118,7 @@ public void testSlidingCountWindowTest() throws Exception {
testWindowFunction("sliding", EXPECTED_RESULTS);
}

@Test(groups = "function")
@Test(enabled = false, groups = "function")
public void testTumblingCountWindowTest() throws Exception {
String[] EXPECTED_RESULTS = {
"0,1,2,3,4,5,6,7,8,9",
Expand Down

0 comments on commit 3849235

Please sign in to comment.