src/main/java/org/mariadb/jdbc/MariaDbStatement.java [862:869]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setMaxRows(final int max) throws SQLException {
    if (max < 0) {
      throw exceptionFactory
          .raiseStatementError(connection, this)
          .create("max rows cannot be negative : asked for " + max, "42000");
    }
    maxRows = max;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/mariadb/jdbc/MariaDbStatement.java [892:899]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setLargeMaxRows(long max) throws SQLException {
    if (max < 0) {
      throw exceptionFactory
          .raiseStatementError(connection, this)
          .create("max rows cannot be negative : setLargeMaxRows value is " + max, "42000");
    }
    maxRows = max;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



