wForget commented on code in PR #6141:
URL: https://github.com/apache/kyuubi/pull/6141#discussion_r1517160960
##########
externals/kyuubi-flink-sql-engine/src/test/scala/org/apache/kyuubi/engine/flink/operation/FlinkOperationSuite.scala:
##########
@@ -993,6 +993,8 @@ abstract class FlinkOperationSuite extends
HiveJDBCTestHelper with WithFlinkTest
statement.getConnection.setSchema("db_a")
val changedSchema = statement.getConnection.getSchema
assert(changedSchema == "db_a")
+ // reset database to default
+ statement.getConnection.setSchema("default_database")
Review Comment:
Flink 1.19 has the following limitations:
```
Cannot drop a database which is currently in use.
```
--
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]