jdbc/src/main/java/software/amazon/timestream/jdbc/TimestreamBaseResultSet.java [213:219]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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 [1438:1443]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



