if ((tsLTZ != null) && (tsLTZ.getLength() != 0)) {
Connection connection = getConnection(session, resultSet.getStatement().getConnection());
Timestamp timestampToWrap = TIMESTAMPLTZ.toTimestamp(connection, tsLTZ.toBytes());
String sessionTimeZone = ((OracleConnection)connection).getSessionTimeZone();
//Bug#4364359 Add a separate wrapper for TIMESTAMPLTZ.
return new TIMESTAMPLTZWrapper(timestampToWrap, sessionTimeZone, this.isLtzTimestampInGmt);
}
return null;
}