mirror of https://github.com/citusdata/citus.git
Fix typo in grouping_is_sortable()
parent
0880a3e1b4
commit
2a24e849fb
|
@ -289,7 +289,7 @@ BuildAggregatePlan(Query *masterQuery, Plan *subPlan)
|
||||||
if (groupColumnCount > 0)
|
if (groupColumnCount > 0)
|
||||||
{
|
{
|
||||||
bool groupingIsHashable = grouping_is_hashable(groupColumnList);
|
bool groupingIsHashable = grouping_is_hashable(groupColumnList);
|
||||||
bool groupingIsSortable = grouping_is_hashable(groupColumnList);
|
bool groupingIsSortable = grouping_is_sortable(groupColumnList);
|
||||||
bool hasDistinctAggregate = HasDistinctAggregate(masterQuery);
|
bool hasDistinctAggregate = HasDistinctAggregate(masterQuery);
|
||||||
|
|
||||||
if (!groupingIsHashable && !groupingIsSortable)
|
if (!groupingIsHashable && !groupingIsSortable)
|
||||||
|
|
Loading…
Reference in New Issue