#306 - Polishing.
Enable ignored tests that are no longer required to be disabled.
This commit is contained in:
@@ -19,8 +19,6 @@ import io.r2dbc.spi.ConnectionFactory;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.springframework.data.r2dbc.core.DatabaseClient;
|
||||
import org.springframework.data.r2dbc.testing.H2TestSupport;
|
||||
|
||||
/**
|
||||
@@ -46,6 +44,5 @@ public class H2DatabaseClientIntegrationTests extends AbstractDatabaseClientInte
|
||||
}
|
||||
|
||||
@Override
|
||||
@Ignore("See https://github.com/r2dbc/r2dbc-h2/issues/66")
|
||||
public void shouldTranslateDuplicateKeyException() {}
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@ import java.util.UUID;
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
@@ -146,11 +145,6 @@ public class MySqlDatabaseClientIntegrationTests extends AbstractDatabaseClientI
|
||||
.verifyComplete();
|
||||
}
|
||||
|
||||
@Ignore("https://github.com/mirromutth/r2dbc-mysql/issues/62")
|
||||
@Test
|
||||
@Override
|
||||
public void insertTypedObjectWithBinary() {}
|
||||
|
||||
@Table("boolean_mapping")
|
||||
@Data
|
||||
static class BooleanMapping {
|
||||
|
||||
@@ -23,8 +23,6 @@ import java.time.Duration;
|
||||
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.MySqlTestSupport;
|
||||
@@ -73,17 +71,6 @@ public class MySqlTransactionalDatabaseClientIntegrationTests
|
||||
.then();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore("https://github.com/mirromutth/r2dbc-mysql/issues/45")
|
||||
@Override
|
||||
public void emitTransactionIds() {}
|
||||
|
||||
@Test
|
||||
@Ignore("https://github.com/mirromutth/r2dbc-mysql/issues/45")
|
||||
public void emitTransactionIdsUsingManagedTransactions() {
|
||||
super.emitTransactionIdsUsingManagedTransactions();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getCurrentTransactionIdStatement() {
|
||||
return "SELECT tx.trx_id FROM information_schema.innodb_trx tx WHERE tx.trx_mysql_thread_id = connection_id()";
|
||||
|
||||
Reference in New Issue
Block a user