jdbc/src/main/java/software/amazon/timestream/jdbc/TimestreamBaseResultSet.java [354:360]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    verifyOpen();
    verifyIndex(columnIndex);

    final Datum currentCell = this.currentRowData.get(columnIndex - 1);
    final TimestreamDataType sourceType = this.tsTypes.get(columnIndex - 1);
    if (this.checkNull(currentCell)) {
      return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jdbc/src/main/java/software/amazon/timestream/jdbc/TimestreamBaseResultSet.java [693:699]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    verifyOpen();
    verifyIndex(columnIndex);

    final Datum currentCell = this.currentRowData.get(columnIndex - 1);
    final TimestreamDataType sourceType = this.tsTypes.get(columnIndex - 1);
    if (this.checkNull(currentCell)) {
      return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



