Skip to content

Commit

Permalink
deps: downgrade Liquibase version and enable Emulator tests (#1882)
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite committed May 28, 2024
1 parent 6622023 commit c466cd3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion samples/java/liquibase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>4.28.0</version>
<version>4.27.0</version>
<configuration>
<propertyFile>liquibase.properties</propertyFile>
<outputChangeLogFile>changelog-master.xml</outputChangeLogFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeTrue;

import com.google.cloud.Timestamp;
import com.google.cloud.spanner.Database;
Expand Down Expand Up @@ -61,10 +60,6 @@ public class ITLiquibaseTest {

@BeforeClass
public static void setup() throws ClassNotFoundException, IOException, SQLException {
assumeTrue(
"This test is not supported on the emulator due to a failure to add a column of type numeric with a default value to a non-empty table",
System.getenv("SPANNER_EMULATOR_HOST") == null);

// Make sure the PG JDBC driver is loaded.
Class.forName("org.postgresql.Driver");

Expand Down

0 comments on commit c466cd3

Please sign in to comment.