Skip to content

Commit

Permalink
Merge pull request #1852 from schemacrawler/trino
Browse files Browse the repository at this point in the history
Remove Trino driver since it does not support Java 8 since version 470
  • Loading branch information
sualeh authored Feb 10, 2025
2 parents 363fe8b + ea1d578 commit b6e2774
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 2,035 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void availableScriptEngines() throws UnsupportedEncodingException {
public void availableJDBCDrivers() throws UnsupportedEncodingException {
final AvailableJDBCDrivers availableJDBCDrivers = new AvailableJDBCDrivers();
final int size = availableJDBCDrivers.size();
assertThat(size == 16, is(true));
assertThat(size, is(15));

final ByteArrayOutputStream baos = new ByteArrayOutputStream();
final String utf8 = StandardCharsets.UTF_8.name();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void availableJDBCDrivers() throws Exception {
final int numJDBCDrivers = availableJDBCDrivers.size();
assertThat(
"Number of of avilable JDBC drivers is not correct - found " + numJDBCDrivers,
numJDBCDrivers == 20,
is(true));
numJDBCDrivers,
is(19));
}
}

This file was deleted.

Loading

0 comments on commit b6e2774

Please sign in to comment.