use of org.dbflute.cbean.sqlclause.query.OrScopeQueryAndPartQueryClause in project dbflute-core by dbflute.
the class AbstractSqlClause method markOrScopeQueryAndPart.
protected void markOrScopeQueryAndPart(List<QueryClause> clauseList) {
if (_orScopeQueryEffective && _orScopeQueryAndPartEffective && !clauseList.isEmpty()) {
// as latest
final QueryClause original = clauseList.remove(clauseList.size() - 1);
clauseList.add(new OrScopeQueryAndPartQueryClause(original, _orScopeQueryAndPartIdentity));
}
}
Aggregations