Updated MySQL integration test

This commit is contained in:
Randall Hauch 2016-01-25 13:01:39 -06:00
parent 71e90b5a69
commit 74ddfe1ec5

View File

@ -20,8 +20,13 @@
public class MetadataIT {
/**
* Loads the {@link Tables} definition by reading JDBC metadata. Note that some characteristics, such as whether columns
* are generated, are not exposed through JDBC (unlike when reading DDL).
* @throws SQLException if there's an error
*/
@Test
public void shouldLoadMetadata() throws SQLException {
public void shouldLoadMetadataViaJdbc() throws SQLException {
try (MySQLConnection conn = new MySQLConnection(TestDatabase.testConfig("readbinlog_test"));) {
conn.connect();
// Set up the table as one transaction and wait to see the events ...