Skip to content

Commit 2f5aa3f

Browse files
committed
[ci] Remove version assigned to hsqldb comments as out of sync with usage
1 parent e561f73 commit 2f5aa3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ private ResultSetWrapper getFirstResultSet(Statement stmt) throws SQLException {
245245
ResultSet rs = stmt.getResultSet();
246246
while (rs == null) {
247247
// move forward to get the first resultset in case the driver
248-
// doesn't return the resultset as the first result (HSQLDB 2.1)
248+
// doesn't return the resultset as the first result (HSQLDB)
249249
if (stmt.getMoreResults()) {
250250
rs = stmt.getResultSet();
251251
} else if (stmt.getUpdateCount() == -1) {

src/test/java/org/apache/ibatis/submitted/timestamp_with_timezone/TimestampWithTimezoneTypeHandlerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void shouldInsertOffsetDateTime() {
7676
}
7777
}
7878

79-
@Disabled("HSQLDB 2.4.1 does not support this.")
79+
@Disabled("HSQLDB does not support this.")
8080
@Test
8181
void shouldInsertOffsetTime() {
8282
OffsetTime ot = OffsetTime.of(11, 22, 33, 123456000, ZoneOffset.ofHoursMinutes(1, 23));

0 commit comments

Comments
 (0)