mirror of
https://github.com/apache/openjpa.git
synced 2025-03-06 16:39:11 +00:00
OPENJPA-1851: change to more appropriate variable name
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1028466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ceee2b1a4
commit
81e1f23a13
@ -216,7 +216,7 @@ public class PreparedQueryImpl implements PreparedQuery {
|
||||
_exps = ((StoreQuery.Executor)executor).getQueryExpressions();
|
||||
for (int i = 0; i < _exps.length; i++) {
|
||||
QueryExpressions exp = _exps[i];
|
||||
if (exp.hasInExpression)
|
||||
if (exp.hasParameterizedInExpression)
|
||||
return new Object[]{null, _loc.get("exclude-in-expression", _id)};
|
||||
if (isUsingExternalizedParameter(exp)) {
|
||||
return new Object[]{null, _loc.get("exclude-externalized-param", _id)};
|
||||
|
@ -78,7 +78,7 @@ public class QueryExpressions
|
||||
private Stack<Context> _contexts = null;
|
||||
public Object state;
|
||||
public ResultShape<?> shape;
|
||||
public boolean hasInExpression;
|
||||
public boolean hasParameterizedInExpression;
|
||||
|
||||
/**
|
||||
* Set reference to the JPQL query contexts.
|
||||
|
@ -310,7 +310,7 @@ public class JPQLExpressionBuilder
|
||||
exps.parameterTypes = parameterTypes;
|
||||
|
||||
exps.accessPath = getAccessPath();
|
||||
exps.hasInExpression = this.hasParameterizedInExpression;
|
||||
exps.hasParameterizedInExpression = this.hasParameterizedInExpression;
|
||||
|
||||
return exps;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user