jdbc/src/main/java/software/amazon/timestream/jdbc/TimestreamBaseResultSet.java [603:609]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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 [737:743]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



