mirror of
https://github.com/apache/druid.git
synced 2025-02-09 19:44:57 +00:00
e86859b228
* SQL support for nested groupBys. Allows, for example, doing exact count distinct by writing: SELECT COUNT(*) FROM (SELECT DISTINCT col FROM druid.foo) Contrast with approximate count distinct, which is: SELECT COUNT(DISTINCT col) FROM druid.foo * Add deeply-nested groupBy docs, tests, and maxQueryCount config. * Extract magic constants into statics. * Rework rules to put preconditions in the "matches" method.