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

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



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

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



