1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Better comments

This commit is contained in:
Sergei Petrunia
2014-11-21 20:45:18 +03:00
parent 1f3724a583
commit 305dd8e5fb

View File

@ -982,7 +982,13 @@ public:
*/
uint top_join_tab_count;
uint send_group_parts;
bool group; /**< If query contains GROUP BY clause */
/*
True if the query has GROUP BY.
(that is, if group_by != NULL. when DISTINCT is converted into GROUP BY, it
will set this, too. It is not clear why we need a separate var from
group_list)
*/
bool group;
bool need_distinct;
/**