Skip to content

Commit

Permalink
[hotfix][table-blink] Ignore tests in GroupWindowTableAggregateITCase…
Browse files Browse the repository at this point in the history
… and TableAggregateITCase

Ignore the tests for the time being and recover it when bug is fixed in blink-planner
  • Loading branch information
hequn8128 committed Aug 23, 2019
1 parent 8be6ad1 commit b6645c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ import org.apache.flink.table.planner.utils.Top3
import org.apache.flink.types.Row
import org.apache.flink.table.planner.runtime.utils.TestData._
import org.junit.Assert._
import org.junit.Test
import org.junit.{Ignore, Test}
import org.junit.runner.RunWith
import org.junit.runners.Parameterized

@Ignore("Remove this ignore when FLINK-13740 is solved.")
@RunWith(classOf[Parameterized])
class GroupWindowTableAggregateITCase(mode: StateBackendMode)
extends StreamingWithStateTestBase(mode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ import org.apache.flink.types.Row
import org.junit.Assert.assertEquals
import org.junit.runner.RunWith
import org.junit.runners.Parameterized
import org.junit.{Before, Test}
import org.junit.{Before, Ignore, Test}

/**
* Tests of groupby (without window) table aggregations
*/
@Ignore("Remove this ignore when FLINK-13740 is solved.")
@RunWith(classOf[Parameterized])
class TableAggregateITCase(mode: StateBackendMode) extends StreamingWithStateTestBase(mode) {

Expand Down

0 comments on commit b6645c0

Please sign in to comment.