add to string for groupby

This commit is contained in:
fjy 2013-05-07 09:31:07 -07:00
parent 01c1257cee
commit f5dab1a4c1
1 changed files with 14 additions and 0 deletions

View File

@ -379,4 +379,18 @@ public class GroupByQuery extends BaseQuery<Row>
); );
} }
} }
@Override
public String toString()
{
return "GroupByQuery{" +
"limitSpec=" + limitSpec +
", dimFilter=" + dimFilter +
", granularity=" + granularity +
", dimensions=" + dimensions +
", aggregatorSpecs=" + aggregatorSpecs +
", postAggregatorSpecs=" + postAggregatorSpecs +
", orderByLimitFn=" + orderByLimitFn +
'}';
}
} }