Skip to content

Commit 3b205a3

Browse files
committed
[KYUUBI #7209] bump mysql image to v8 for authz plugin test suite on iceberg
### Why are the changes needed? - bump mysql docker image from v5.7 to v8 in MysqlContainerEnv, with arm support allowing debugging on arm chips like Apple silicon chips - bump testcontainers-scala to 0.43.0 ### How was this patch tested? ### Was this patch authored or co-authored using generative AI tooling? Closes #7209 from bowenliang123/authz-mysql-8. Closes #7209 dd1ed63 [Bowen Liang] bump mysql:8 in MysqlContainerEnv d422da0 [Bowen Liang] bump testcontainers-scala to 0.43.0 Lead-authored-by: Bowen Liang <liang.bowen.123@qq.com> Co-authored-by: Bowen Liang <liangbowen@gf.com.cn> Signed-off-by: bowenliang123 <liang.bowen.123@qq.com>
1 parent 54212ef commit 3b205a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extensions/spark/kyuubi-spark-authz/src/test/scala/org/apache/kyuubi/plugin/spark/authz/MysqlContainerEnv.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import org.testcontainers.utility.DockerImageName
2323
trait MysqlContainerEnv {
2424

2525
val containerDef: MySQLContainer = MySQLContainer.Def(
26-
dockerImageName = DockerImageName.parse("mysql:5.7"),
26+
dockerImageName = DockerImageName.parse("mysql:8"),
2727
databaseName = "hive_metastore",
2828
username = "root",
2929
password = "123456")

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
<sqlite.version>3.46.1.3</sqlite.version>
216216
<supercsv.version>2.2.0</supercsv.version>
217217
<swagger.version>2.2.1</swagger.version>
218-
<testcontainers-scala.version>0.41.4</testcontainers-scala.version>
218+
<testcontainers-scala.version>0.43.0</testcontainers-scala.version>
219219
<!-- https://github.com/ThreeTen/threeten-extra/issues/226 -->
220220
<threeten.version>1.7.0</threeten.version>
221221
<!-- trino-client involves kotlin runtime dependencies since 412 because of upgrading okhttp -->

0 commit comments

Comments
 (0)