* Include filter in MultiKey parts for complex references. Fixes bug #584

originally reported by Franz Philipp Moser on helma-user.
  http://helma.org/bugs/show_bug.cgi?id=584
This commit is contained in:
hns 2007-12-11 16:16:28 +00:00
parent 21c44962f1
commit 389ab31d9e

View file

@ -1285,6 +1285,10 @@ public final class Relation {
map.put(cnst.foreignKey, home.getString(cnst.localProperty()));
}
}
// add filter as pseudo-constraint
if (filter != null) {
map.put("__filter__", filter);
}
return map;
}