You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by he...@apache.org on 2019/08/23 03:33:18 UTC

[flink] branch master updated: [hotfix][table-blink] Ignore tests in GroupWindowTableAggregateITCase and TableAggregateITCase

This is an automated email from the ASF dual-hosted git repository.

hequn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new b6645c0  [hotfix][table-blink] Ignore tests in GroupWindowTableAggregateITCase and TableAggregateITCase
b6645c0 is described below

commit b6645c0abcbbe6a94586916772b15bea15818d95
Author: hequn8128 <ch...@gmail.com>
AuthorDate: Fri Aug 23 10:48:39 2019 +0800

    [hotfix][table-blink] Ignore tests in GroupWindowTableAggregateITCase and TableAggregateITCase
    
    Ignore the tests for the time being and recover it when bug is fixed in blink-planner
---
 .../planner/runtime/stream/table/GroupWindowTableAggregateITCase.scala | 3 ++-
 .../table/planner/runtime/stream/table/TableAggregateITCase.scala      | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/GroupWindowTableAggregateITCase.scala b/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/GroupWindowTableAggregateITCase.scala
index 456fa32..31dd9ae 100644
--- a/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/GroupWindowTableAggregateITCase.scala
+++ b/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/GroupWindowTableAggregateITCase.scala
@@ -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) {
diff --git a/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/TableAggregateITCase.scala b/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/TableAggregateITCase.scala
index 7b18b96..e53e1bc 100644
--- a/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/TableAggregateITCase.scala
+++ b/flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/table/TableAggregateITCase.scala
@@ -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) {