YesOrNo828 commented on code in PR #5585:
URL: https://github.com/apache/kyuubi/pull/5585#discussion_r1383178412


##########
externals/kyuubi-flink-sql-engine/src/test/scala/org/apache/kyuubi/engine/flink/operation/FlinkOperationSuite.scala:
##########
@@ -1265,4 +1266,14 @@ abstract class FlinkOperationSuite extends 
HiveJDBCTestHelper with WithFlinkTest
       })
     assert(exception.getMessage === "Futures timed out after [60000 
milliseconds]")
   }
+
+  test("execute statement - help") {
+    withJdbcStatement() { stmt =>
+      val resultSet = stmt.executeQuery("help")
+      val metadata = resultSet.getMetaData
+      assert(metadata.getColumnName(1) === "result")
+      assert(resultSet.next())
+      assert(resultSet.getString(1).equals(CliStrings.MESSAGE_HELP.toString))

Review Comment:
   This is the screenshot of `HELP;` command. Do you have a time to take a 
look? @link3280 
   
   <img width="1352" alt="image" 
src="https://github.com/apache/kyuubi/assets/6017591/29b9ce5e-16b2-4e38-a1b5-7e994dd598e8";>
   



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to