Skip to content

Commit

Permalink
add charset to our mariadb
Browse files Browse the repository at this point in the history
  • Loading branch information
merikan committed Oct 5, 2020
1 parent e87477e commit 0d1e189
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
public abstract class AbstractIntegrationTest {

static final MariaDBContainer mariadb;
private static GenericContainer redis;

static {
mariadb = new MariaDBContainer("mariadb:10.5.5");
mariadb = (MariaDBContainer) new MariaDBContainer("mariadb:10.5.5")
.withCommand("--character-set-server=utf8mb4", "--collation-server=utf8mb4_unicode_ci");
mariadb.start();
}

Expand Down

0 comments on commit 0d1e189

Please sign in to comment.