Skip to content
Snippets Groups Projects
Verified Commit 49673e7a authored by Timm Fitschen's avatar Timm Fitschen
Browse files

fix missing access object in query

parent dc95d192
No related branches found
No related tags found
No related merge requests found
......@@ -507,6 +507,7 @@ public class Query implements QueryInterface, ToElementable, TransactionInterfac
public Query execute(final Access access) throws ParsingException {
parse();
setAccess(access);
this.resultSet = getCached(this.query);
if (this.resultSet == null) {
......@@ -556,12 +557,8 @@ public class Query implements QueryInterface, ToElementable, TransactionInterfac
}
protected void executeNoCache(Access access) {
setAccess(access);
try {
this.resultSet = getResultSet(executeStrategy(this.versioned), this.versioned);
} finally {
cleanUp();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment