pnowojski commented on a change in pull request #6787: [FLINK-8577][table] 
Implement proctime DataStream to Table upsert conversion
URL: https://github.com/apache/flink/pull/6787#discussion_r247962668
 
 

 ##########
 File path: 
flink-libraries/flink-table/src/test/scala/org/apache/flink/table/runtime/utils/StreamTestData.scala
 ##########
 @@ -95,4 +95,41 @@ object StreamTestData {
     data.+=(((3, 3), "three"))
     env.fromCollection(data)
   }
+
+  def getSmall3TupleUpsertStream(env: StreamExecutionEnvironment):
+      DataStream[(Boolean, (Int, Long, String))] = {
+    val data = new mutable.MutableList[(Boolean, (Int, Long, String))]
+    data.+=((true, (1, 1L, "Hi")))
+    data.+=((true, (2, 2L, "Hello")))
+    data.+=((true, (3, 2L, "Hello world")))
+    env.fromCollection(data)
+  }
+
+  def get3TupleUpsertStream(env: StreamExecutionEnvironment):
 
 Review comment:
   Is this method used somewhere?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to