Skip to content

Commit

Permalink
Merge pull request #990 from schemacrawler/update-cassandra-driver
Browse files Browse the repository at this point in the history
Update Cassandra JDBC driver
  • Loading branch information
sualeh authored Jan 12, 2023
2 parents 2556da4 + 5216523 commit d953645
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public int getInt(final String columnName, final int defaultValue) {
"NULL int value for column <%s>, so using default %d", columnName, defaultValue));
value = defaultValue;
}
} catch (final NumberFormatException | SQLException e) {
} catch (final SQLException e) {
LOGGER.log(
Level.WARNING,
e,
Expand Down Expand Up @@ -303,7 +303,7 @@ public long getLong(final String columnName, final long defaultValue) {
columnName, defaultValue));
value = defaultValue;
}
} catch (final NumberFormatException | SQLException e) {
} catch (final SQLException e) {
LOGGER.log(
Level.WARNING,
e,
Expand Down Expand Up @@ -334,7 +334,7 @@ public short getShort(final String columnName, final short defaultValue) {
columnName, defaultValue));
value = defaultValue;
}
} catch (final NumberFormatException | SQLException e) {
} catch (final SQLException e) {
LOGGER.log(
Level.WARNING,
e,
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-dbtest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>com.ing.data</groupId>
<artifactId>cassandra-jdbc-wrapper</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-jdbc-drivers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<dependency>
<groupId>com.ing.data</groupId>
<artifactId>cassandra-jdbc-wrapper</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit d953645

Please sign in to comment.