This commit is contained in:
Grahame Grieve 2019-10-26 23:40:54 +11:00
parent 0b67029100
commit 9374e6fcd5
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ public class TerminologyCache {
for (ConceptSetFilterComponent f : cc.getFilter()) { for (ConceptSetFilterComponent f : cc.getFilter()) {
if (!Utilities.noString(s)) if (!Utilities.noString(s))
s = s + " & "; s = s + " & ";
s = s + f.getProperty()+" "+f.getOp().toCode()+" "+f.getValue(); s = s + f.getProperty()+" "+(f.hasOp() ? f.getOp().toCode() : "?")+" "+f.getValue();
} }
return "from "+system+" where "+s+vsd; return "from "+system+" where "+s+vsd;
} }