fsk119 commented on a change in pull request #15366:
URL: https://github.com/apache/flink/pull/15366#discussion_r603749496



##########
File path: 
flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/SqlClientTest.java
##########
@@ -197,4 +219,14 @@ public void testVerboseErrorMessage() {
             assertThat(output, containsString(error));
         }
     }
+
+    @Test
+    public void testExecuteSqlFile() throws IOException {
+        String[] args = new String[] {"-f", sqlFilePath};
+        SqlClient.main(args);
+        final URL url = 
getClass().getClassLoader().getResource("sql-client-help-command.out");
+        final String help = FileUtils.readFileUtf8(new File(url.getFile()));
+        // TODO: escape test to trigger test

Review comment:
       I am too tired to fix this test last night. So I just leave the comment 
to inform myself...




-- 
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:
[email protected]


Reply via email to