lincoln-lil commented on code in PR #21676:
URL: https://github.com/apache/flink/pull/21676#discussion_r1073356514


##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/plan/batch/sql/RowLevelDeleteTest.java:
##########
@@ -53,24 +57,37 @@ public 
RowLevelDeleteTest(SupportsRowLevelDelete.RowLevelDeleteMode deleteMode)
     @Before
     public void before() {
         util = batchTestUtil(TableConfig.getDefault());
+        util.tableEnv()
+                .getConfig()
+                .getConfiguration()
+                
.set(ExecutionConfigOptions.TABLE_EXEC_RESOURCE_DEFAULT_PARALLELISM, 12);
     }
 
     @Test
     public void testDeleteWithoutFilter() {
-        createDeleteTable();
-        util.verifyExplainInsert("DELETE FROM t");
+        createTableForDelete();
+        util.verifyExplainInsert(
+                "DELETE FROM t",
+                JavaScalaConversionUtil.toScala(

Review Comment:
   nit: make it a member variable for reusing



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to