src/main/java/org/mariadb/jdbc/internal/com/read/resultset/UpdatableResultSet.java [520:529]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void updateAsciiStream(int columnIndex, InputStream inputStream, long length)
      throws SQLException {
    checkUpdatable(columnIndex);
    if (inputStream == null) {
      parameterHolders[columnIndex - 1] = new NullParameter(ColumnType.BLOB);
      return;
    }
    parameterHolders[columnIndex - 1] =
        new StreamParameter(inputStream, length, noBackslashEscapes);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/mariadb/jdbc/internal/com/read/resultset/UpdatableResultSet.java [544:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void updateBinaryStream(int columnIndex, InputStream inputStream, long length)
      throws SQLException {
    checkUpdatable(columnIndex);
    if (inputStream == null) {
      parameterHolders[columnIndex - 1] = new NullParameter(ColumnType.BLOB);
      return;
    }
    parameterHolders[columnIndex - 1] =
        new StreamParameter(inputStream, length, noBackslashEscapes);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



