Skip to content

Commit

Permalink
[misc] ensure test stability for galera
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Sep 30, 2022
1 parent 11d9a16 commit df715bd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ public class DistributedTransactionTest extends BaseTest {
@BeforeClass()
public static void initClass() throws SQLException {
Assume.assumeTrue(
!"skysql".equals(System.getenv("srv")) && !"skysql-ha".equals(System.getenv("srv")));
!"skysql".equals(System.getenv("srv"))
&& !"skysql-ha".equals(System.getenv("srv"))
&& !"galera".equals(System.getenv("srv")));
drop();
try (Statement stmt = sharedConnection.createStatement()) {
stmt.execute("CREATE TABLE xatable(i int)");
Expand Down

0 comments on commit df715bd

Please sign in to comment.