diff --git a/src/test/java/org/springframework/data/r2dbc/core/PostgresDatabaseClientIntegrationTests.java b/src/test/java/org/springframework/data/r2dbc/core/PostgresDatabaseClientIntegrationTests.java index c46308dd..04a730a5 100644 --- a/src/test/java/org/springframework/data/r2dbc/core/PostgresDatabaseClientIntegrationTests.java +++ b/src/test/java/org/springframework/data/r2dbc/core/PostgresDatabaseClientIntegrationTests.java @@ -20,8 +20,6 @@ import io.r2dbc.spi.ConnectionFactory; import javax.sql.DataSource; import org.junit.ClassRule; -import org.junit.Ignore; -import org.junit.Test; import org.springframework.data.r2dbc.testing.ExternalDatabase; import org.springframework.data.r2dbc.testing.PostgresTestSupport; @@ -31,7 +29,6 @@ import org.springframework.data.r2dbc.testing.PostgresTestSupport; * * @author Mark Paluch */ -@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151") public class PostgresDatabaseClientIntegrationTests extends AbstractDatabaseClientIntegrationTests { @ClassRule public static final ExternalDatabase database = PostgresTestSupport.database(); @@ -51,18 +48,4 @@ public class PostgresDatabaseClientIntegrationTests extends AbstractDatabaseClie return PostgresTestSupport.CREATE_TABLE_LEGOSET; } - @Ignore("Adding RETURNING * lets Postgres report 0 affected rows.") - @Test - @Override - public void insert() {} - - @Ignore("Postgres considers multiple references to the same parameter as multiple bindings (where name = $1 OR lastname = $1)") - @Test - @Override - public void executeSelectNamedParameters() {} - - @Ignore("Adding RETURNING * lets Postgres report 0 affected rows.") - @Test - @Override - public void insertTypedObject() {} } diff --git a/src/test/java/org/springframework/data/r2dbc/core/PostgresIntegrationTests.java b/src/test/java/org/springframework/data/r2dbc/core/PostgresIntegrationTests.java index f2ef7e46..ff2056b9 100644 --- a/src/test/java/org/springframework/data/r2dbc/core/PostgresIntegrationTests.java +++ b/src/test/java/org/springframework/data/r2dbc/core/PostgresIntegrationTests.java @@ -29,7 +29,6 @@ import javax.sql.DataSource; import org.junit.Before; import org.junit.ClassRule; -import org.junit.Ignore; import org.junit.Test; import org.springframework.data.annotation.Id; @@ -44,7 +43,6 @@ import org.springframework.jdbc.core.JdbcTemplate; * * @author Mark Paluch */ -@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151") public class PostgresIntegrationTests extends R2dbcIntegrationTestSupport { @ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();