public boolean absolute()

in jdbc/src/main/java/software/amazon/timestream/jdbc/TimestreamBaseResultSet.java [112:122]


  public boolean absolute(int row) throws SQLException {
    verifyOpen();
    if (row < 1) {
      throw Error.createSQLFeatureNotSupportedException(LOGGER, Error.INVALID_ROW_VALUE);
    } else if (this.rowIndex > row) {
      throw Error.createSQLFeatureNotSupportedException(LOGGER, Error.RESULT_FORWARD_ONLY);
    }

    while ((this.rowIndex < row) && next());
    return !isBeforeFirst() && !isAfterLast();
  }