Skip to content

Commit

Permalink
split and fix failing integration tests for exa connection mode, rela…
Browse files Browse the repository at this point in the history
…ted to strict datatype checks in the compiler
  • Loading branch information
pj-spoelders committed Mar 7, 2024
1 parent ee49c83 commit 45ed930
Show file tree
Hide file tree
Showing 2 changed files with 532 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private ResultSet selectAllFrom(final String tableName) throws SQLException {
return query("SELECT * FROM " + tableName);
}

private String getVirtualTableName(final VirtualSchema virtualSchema, final Table table) {
protected String getVirtualTableName(final VirtualSchema virtualSchema, final Table table) {
return virtualSchema.getFullyQualifiedName() + ".\"" + table.getName() + "\"";
}

Expand Down Expand Up @@ -375,7 +375,7 @@ void testIdentifierCaseSensitivityOnTable() {
}
}

private void assertVsQuery(final String sql, final Matcher<ResultSet> expected) {
protected void assertVsQuery(final String sql, final Matcher<ResultSet> expected) {
try {
assertThat(query(sql), expected);
} catch (final SQLException exception) {
Expand Down
Loading

0 comments on commit 45ed930

Please sign in to comment.