Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HHH-19228 upgrade mysql testing version to 9.2 #9837

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion docker_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ else
fi

mysql() {
mysql_8_2
mysql_9_2
}

mysql_8_0() {
Expand Down Expand Up @@ -91,6 +91,31 @@ mysql_8_2() {
fi
}

mysql_9_2() {
$CONTAINER_CLI rm -f mysql || true
$CONTAINER_CLI run --name mysql -e MYSQL_USER=hibernate_orm_test -e MYSQL_PASSWORD=hibernate_orm_test -e MYSQL_ROOT_PASSWORD=hibernate_orm_test -e MYSQL_DATABASE=hibernate_orm_test -e MYSQL_ROOT_PASSWORD=hibernate_orm_test -p3306:3306 -d ${DB_IMAGE_MYSQL_9_2:-docker.io/mysql:9.2.0} --character-set-server=utf8mb4 --collation-server=utf8mb4_0900_as_cs --init-connect="SET character_set_client= 'utf8mb4';SET character_set_results = 'utf8mb4'; SET character_set_connection= 'utf8mb4'; SET collation_connection = 'utf8mb4_0900_as_cs';" --log-bin-trust-function-creators=1 --lower_case_table_names=2

# Give the container some time to start
OUTPUT=
n=0
until [ "$n" -ge 5 ]
do
# Need to access STDERR. Thanks for the snippet https://stackoverflow.com/a/56577569/412446
{ OUTPUT="$( { $CONTAINER_CLI logs mysql; } 2>&1 1>&3 3>&- )"; } 3>&1;
if [[ $OUTPUT == *"ready for connections"* ]]; then
break;
fi
n=$((n+1))
echo "Waiting for MySQL to start..."
sleep 3
done
if [ "$n" -ge 5 ]; then
echo "MySQL failed to start and configure after 15 seconds"
else
echo "MySQL successfully started"
fi
}

mariadb() {
mariadb_11_7
}
Expand Down Expand Up @@ -1049,6 +1074,7 @@ if [ -z ${1} ]; then
echo -e "\tmssql_2022"
echo -e "\tmssql_2017"
echo -e "\tmysql"
echo -e "\tmysql_9_2"
echo -e "\tmysql_8_2"
echo -e "\tmysql_8_1"
echo -e "\tmysql_8_0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void testPersistForceFlush() {
}

//tag::entity-pojo-naive-equals-hashcode-example[]
@Entity(name = "Library")
@Entity(name = "MyLibrary")
public static class Library {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void testPersist() {
}

//tag::entity-pojo-natural-id-equals-hashcode-example[]
@Entity(name = "Library")
@Entity(name = "MyLibrary")
public static class Library {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void testTransientSetIdentityScope() {
}

//tag::entity-pojo-set-mapping-example[]
@Entity(name = "Library")
@Entity(name = "MyLibrary")
public static class Library {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public void testListaggWithNullsClause(SessionFactoryScope scope) {
Root<EntityOfBasics> root = cr.from( EntityOfBasics.class );

JpaExpression<String> function = cb.listagg(
cb.desc( root.get( "id" ), true ),
cb.desc( root.get( "id" )),
root.get( "theString" ),
cb.literal( "," )
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public void testListaggWithFilter(SessionFactoryScope scope) {
public void testListaggWithNullsClause(SessionFactoryScope scope) {
scope.inTransaction(
session -> {
TypedQuery<String> q = session.createQuery( "select listagg(eob.theString, ',') within group (order by eob.id desc nulls first) from EntityOfBasics eob", String.class );
TypedQuery<String> q = session.createQuery( "select listagg(eob.theString, ',') within group (order by eob.id desc) from EntityOfBasics eob", String.class );
assertEquals( "5,13,7,6,5", q.getSingleResult() );
}
);
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ dependencyResolutionManagement {
def informixVersion = version "informix", "4.50.11"
def mariadbVersion = version "mariadb", "3.5.1"
def mssqlVersion = version "mssql", "12.8.1.jre11"
def mysqlVersion = version "mysql", "9.1.0"
def mysqlVersion = version "mysql", "9.2.0"
def oracleVersion = version "oracle", "23.7.0.25.01"
def pgsqlVersion = version "pgsql", "42.7.4"
def sybaseVersion = version "sybase", "1.3.1"
Expand Down