We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02bb99 commit eee3c55Copy full SHA for eee3c55
kyuubi-common/src/test/scala/org/apache/kyuubi/util/JdbcUtilsSuite.scala
@@ -26,8 +26,9 @@ import org.apache.kyuubi.KyuubiFunSuite
26
27
class JdbcUtilsSuite extends KyuubiFunSuite {
28
29
- private val connUrl = s"jdbc:derby:memory:jdbc_utils_test;create=true"
30
- private val shutdownUrl = s"jdbc:derby:memory:jdbc_utils_test;shutdown=true"
+ private val dbUrl = s"jdbc:derby:memory:jdbc_utils_test"
+ private val connUrl = s"$dbUrl;create=true"
31
+ private val shutdownUrl = s"$dbUrl;shutdown=true"
32
private val driverClz = "org.apache.derby.jdbc.AutoloadedDriver"
33
34
implicit private val ds: DataSource =
0 commit comments