mirror of https://github.com/apache/druid.git
add to string for groupby
This commit is contained in:
parent
01c1257cee
commit
f5dab1a4c1
|
@ -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 +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue