cayenne/src/main/java/org/apache/cayenne/query/SQLSelect.java [259:270]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public SQLSelect<T> params(Map<String, ?> parameters) {
		if (this.params == null) {
			this.params = new HashMap<>(parameters);
		} else {
			this.params.putAll(parameters);
		}
		this.replacementQuery = null;

		// since named parameters are specified, resetting positional parameters
		this.positionalParams = null;
		return this;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cayenne/src/main/java/org/apache/cayenne/query/SQLExec.java [94:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public SQLExec params(Map<String, ?> parameters) {

        if (this.params == null) {
            this.params = new HashMap<>(parameters);
        } else {
            this.params.putAll(parameters);
        }

        this.replacementQuery = null;

        // since named parameters are specified, resetting positional parameters
        this.positionalParams = null;
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



