Skip to content

Commit

Permalink
Fix cases
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Jun 5, 2020
1 parent 7fe7332 commit fa51d43
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -26,7 +26,7 @@ import org.apache.flink.table.planner.runtime.utils.{StreamingTestBase, TestSink
import org.apache.flink.types.Row

import org.junit.Assert.assertEquals
import org.junit.Before
import org.junit.{Before, Test}

import scala.collection.Seq

Expand Down Expand Up @@ -55,4 +55,8 @@ abstract class StreamFileSystemITCaseBase extends StreamingTestBase with FileSys
expectedResult.map(TestSinkUtil.rowToString(_)).sorted,
sink.getAppendResults.sorted)
}

// Streaming mode not support overwrite
@Test
override def testInsertOverwrite(): Unit = {}
}

0 comments on commit fa51d43

Please sign in to comment.