cloud-fan commented on code in PR #43390:
URL: https://github.com/apache/spark/pull/43390#discussion_r1368202786
##########
connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegrationSuite.scala:
##########
@@ -43,7 +43,8 @@ class MySQLIntegrationSuite extends
DockerJDBCIntegrationSuite {
override val usesIpc = false
override val jdbcPort: Int = 3306
override def getJdbcUrl(ip: String, port: Int): String =
- s"jdbc:mysql://$ip:$port/mysql?user=root&password=rootpass"
+ s"jdbc:mysql://$ip:$port/" +
+ s"mysql?user=root&password=rootpass"
Review Comment:
```suggestion
s"jdbc:mysql://$ip:$port/mysql?user=root&password=rootpass"
```
--
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]