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

fix #130

parent 23a21818
No related branches found
No related tags found
1 merge request!9fix SELECT name FROM ENTITY
Pipeline #7600 passed
......@@ -663,13 +663,15 @@ public class Query implements QueryInterface, ToElementable, TransactionInterfac
if (this.container != null && this.type == Type.FIND) {
for (final IdVersionPair p : this.resultSet) {
final Entity e = new RetrieveEntity(p.id, p.version);
if (p.id > 99) {
final Entity e = new RetrieveEntity(p.id, p.version);
// if query has select-clause:
if (this.selections != null && !this.selections.isEmpty()) {
e.addSelections(this.selections);
// if query has select-clause:
if (this.selections != null && !this.selections.isEmpty()) {
e.addSelections(this.selections);
}
this.container.add(e);
}
this.container.add(e);
}
}
return this;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment