Add TODOs

This commit is contained in:
김선우
2025-08-28 14:38:13 +09:00
parent a9ae588159
commit 6c93d78394

View File

@@ -788,27 +788,31 @@ public final class JDBC4ResultSet implements ResultSet, ResultSetMetaData {
}
@Override
@SkipNullableCheck
@Nullable
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
throw new UnsupportedOperationException("not implemented");
// TODO: Properly handle timezone conversion with Calendar
return getDate(columnIndex);
}
@Override
@SkipNullableCheck
@Nullable
public Date getDate(String columnLabel, Calendar cal) throws SQLException {
throw new UnsupportedOperationException("not implemented");
// TODO: Properly handle timezone conversion with Calendar
return getDate(columnLabel);
}
@Override
@SkipNullableCheck
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
throw new UnsupportedOperationException("not implemented");
// TODO: Properly handle timezone conversion with Calendar
return getTime(columnIndex);
}
@Override
@SkipNullableCheck
public Time getTime(String columnLabel, Calendar cal) throws SQLException {
throw new UnsupportedOperationException("not implemented");
// TODO: Properly handle timezone conversion with Calendar
return getTime(columnLabel);
}
@Override