Renamed .groupby option to .group, according to spec, in the
parsing of db mapping when using the new format.
This commit is contained in:
parent
337928ee4a
commit
1108e386e0
1 changed files with 3 additions and 3 deletions
|
@ -377,14 +377,14 @@ public class Relation {
|
||||||
maxSize = 0;
|
maxSize = 0;
|
||||||
}
|
}
|
||||||
// get group by property
|
// get group by property
|
||||||
groupby = props.getProperty (propName+".groupby");
|
groupby = props.getProperty (propName+".group");
|
||||||
if (groupby != null && groupby.trim().length() == 0)
|
if (groupby != null && groupby.trim().length() == 0)
|
||||||
groupby = null;
|
groupby = null;
|
||||||
if (groupby != null) {
|
if (groupby != null) {
|
||||||
groupbyorder = props.getProperty (propName+".groupby.order");
|
groupbyorder = props.getProperty (propName+".group.order");
|
||||||
if (groupbyorder != null && groupbyorder.trim().length() == 0)
|
if (groupbyorder != null && groupbyorder.trim().length() == 0)
|
||||||
groupbyorder = null;
|
groupbyorder = null;
|
||||||
groupbyprototype = props.getProperty (propName+".groupby.prototype");
|
groupbyprototype = props.getProperty (propName+".group.prototype");
|
||||||
if (groupbyprototype != null && groupbyprototype.trim().length() == 0)
|
if (groupbyprototype != null && groupbyprototype.trim().length() == 0)
|
||||||
groupbyprototype = null;
|
groupbyprototype = null;
|
||||||
// aggressive loading and caching is not supported for groupby-nodes
|
// aggressive loading and caching is not supported for groupby-nodes
|
||||||
|
|
Loading…
Add table
Reference in a new issue