Skip to content

Commit 2ba1daa

Browse files
committed
Fix test for Db2
1 parent 0a8a119 commit 2ba1daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/integration-test/java/com/scalar/db/storage/jdbc/JdbcAdminIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ public void renameColumn_Db2_ForPrimaryOrIndexKeyColumn_ShouldThrowUnsupportedOp
300300
.timeValue(getColumnName10(), LocalTime.now(ZoneId.of("UTC")))
301301
.timestampTZValue(getColumnName11(), Instant.now());
302302
if (isTimestampTypeSupported()) {
303-
put.timestampValue(getColumnName11(), LocalDateTime.now(ZoneOffset.UTC));
303+
put.timestampValue(getColumnName12(), LocalDateTime.now(ZoneOffset.UTC));
304304
}
305305
storage.put(put.build());
306306
storage.close();

0 commit comments

Comments
 (0)