Skip to content

Commit

Permalink
Fix integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Feb 4, 2025
1 parent a47ea48 commit 19b242e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void testMySQLGeneratedColumns() throws Exception {
Assert.assertTrue(columnsToDataTypeMap.get("fullname").equalsIgnoreCase("Nullable(String)"));
Assert.assertTrue(columnsToDataTypeMap.get("email").equalsIgnoreCase("String"));

ResultSet resultSet = writer.executeQueryWithResultSet("select fullname from contacts");
ResultSet resultSet = writer.executeQueryWithResultSet("select fullname from employees.contacts");
boolean insertCheck = false;
while (resultSet.next()) {
insertCheck = true;
Expand Down

0 comments on commit 19b242e

Please sign in to comment.