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

fix #130

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