Skip to content

Commit

Permalink
HIVE-28597: Upgrade to 8.4.3 LTS version of MySQL
Browse files Browse the repository at this point in the history
  • Loading branch information
KiranVelumuri committed Oct 30, 2024
1 parent 57f720d commit 2361b8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public String getJdbcDriver() {
return "com.mysql.jdbc.Driver";
}

public String getDockerImageName() { return "mysql:5.7.37"; }
public String getDockerImageName() { return "mysql:8.4.3"; }

public String[] getDockerAdditionalArgs() {
return new String[] {"-p", "3306:3306",
Expand All @@ -53,7 +53,7 @@ public String[] getDockerAdditionalArgs() {
}

public boolean isContainerReady(ProcessResults pr) {
Pattern pat = Pattern.compile("ready for connections");
Pattern pat = Pattern.compile("mysqld.*ready for connections.*port.*3306");
Matcher m = pat.matcher(pr.stderr);
return m.find() && m.find();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class Mysql extends DatabaseRule {

@Override
public String getDockerImageName() {
return "mysql:5.7.37";
return "mysql:8.4.3";
}

@Override
Expand Down Expand Up @@ -67,7 +67,7 @@ public String getInitialJdbcUrl(String hostAddress) {

@Override
public boolean isContainerReady(ProcessResults pr) {
Pattern pat = Pattern.compile("ready for connections");
Pattern pat = Pattern.compile("mysqld.*ready for connections.*port.*3306");
Matcher m = pat.matcher(pr.stderr);
return m.find() && m.find();
}
Expand Down

0 comments on commit 2361b8b

Please sign in to comment.