File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Hibernate Reactive has been tested with:
33
33
- MySQL 8
34
34
- MariaDB 10
35
35
- Db2 11.5
36
- - CockroachDB 21.1
36
+ - CockroachDB 21.2
37
37
- MS SQL Server 2019
38
38
- [ Hibernate ORM] [ ] 5.6.5.Final
39
39
- [ Vert.x Reactive PostgreSQL Client] ( https://vertx.io/docs/vertx-pg-client/java/ ) 4.2.4
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class CockroachDBDatabase extends PostgreSQLDatabase {
16
16
17
17
public static CockroachDBDatabase INSTANCE = new CockroachDBDatabase ();
18
18
19
- public final static String IMAGE_NAME = "cockroachdb/cockroach:v21.1.11 " ;
19
+ public final static String IMAGE_NAME = "cockroachdb/cockroach:v21.2.4 " ;
20
20
21
21
/**
22
22
* Holds configuration for the CockroachDB database container. If the build is run with <code>-Pdocker</code> then
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ configured to run the tests:
120
120
```
121
121
podman run --rm --name=HibernateTestingCockroachDB \
122
122
--hostname=roachrr1 -p 26257:26257 -p 8080:8080 \
123
- cockroachdb/cockroach:v21.1.11 start-single-node --insecure
123
+ cockroachdb/cockroach:v21.2.4 start-single-node --insecure
124
124
```
125
125
126
126
Some of tests needs temporary tables and because this is an experimental feature in
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ import static org.assertj.core.api.Assertions.assertThat;
63
63
public class {baseName} {
64
64
65
65
@ClassRule
66
- public final static CockroachContainer database = new CockroachContainer( "cockroachdb/cockroach:v21.1.11 " );
66
+ public final static CockroachContainer database = new CockroachContainer( "cockroachdb/cockroach:v21.2.4 " );
67
67
68
68
private Mutiny.SessionFactory sessionFactory;
69
69
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ enum Database {
232
232
MYSQL ( () -> new MySQLContainer ( "mysql:8.0.28" ) ),
233
233
DB2 ( () -> new Db2Container ( "ibmcom/db2:11.5.5.1" ).acceptLicense () ),
234
234
MARIADB ( () -> new MariaDBContainer ( "mariadb:10.7.1" ) ),
235
- COCKROACHDB ( () -> new CockroachContainer ( "cockroachdb/cockroach:v21.1.11 " ) );
235
+ COCKROACHDB ( () -> new CockroachContainer ( "cockroachdb/cockroach:v21.2.4 " ) );
236
236
237
237
private final Supplier <JdbcDatabaseContainer <?>> containerSupplier ;
238
238
You can’t perform that action at this time.
0 commit comments