Koji Sekiguchi created SOLR-4330:
------------------------------------
Summary: group.sort is ignored when using truncate and ex/tag
local params
Key: SOLR-4330
URL: https://issues.apache.org/jira/browse/SOLR-4330
Project: Solr
Issue Type: Bug
Components: search
Affects Versions: 4.0, 3.6, 4.1, 5.0
Reporter: Koji Sekiguchi
Priority: Trivial
In parseParams method of SimpleFacets, as group sort is not set after creating
grouping object, member variable groupSort is always null. Because of it,
AbstractAllGroupHeadsCollector with default sort (new Sort()) is created all
the time.
{code}
public AbstractAllGroupHeadsCollector<?> createAllGroupCollector() throws
IOException {
Sort sortWithinGroup = groupSort != null ? groupSort : new Sort();
return TermAllGroupHeadsCollector.create(groupBy, sortWithinGroup);
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]