JasonLeeCoding commented on a change in pull request #15980:
URL: https://github.com/apache/flink/pull/15980#discussion_r637664244



##########
File path: 
flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/SqlClientTest.java
##########
@@ -176,12 +176,14 @@ public void testVerboseErrorMessage() throws Exception {
     public void testInitFile() throws Exception {
         List<String> statements =
                 Arrays.asList(
-                        "CREATE TABLE source ("
+                        "-- Define Table \n"
+                                + "CREATE TABLE source ("
                                 + "id INT,"
                                 + "val STRING"
                                 + ") WITH ("
                                 + "  'connector' = 'values'"
-                                + ");\n",
+                                + "); "
+                                + "-- Define Table \n",
                         "SET key = value;\n");

Review comment:
       just like this "SET key = value; -- define set \n" right ?




-- 
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to