diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-10-05 09:47:45 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-10-05 17:14:14 +0200 |
commit | e8daa41885b50094285f82f2a95e882b3dcab153 (patch) | |
tree | 04c9befaef4ce3b23f85803015f124b3d85428b3 /sql/sql_select.h | |
parent | cf50e13fbd1b4d27a3542fe2751216d274eb7493 (diff) | |
download | mariadb-git-e8daa41885b50094285f82f2a95e882b3dcab153.tar.gz |
typos in comments, minor stylistic edits
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index 4e77d5b6008..4f07a51788a 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -1011,6 +1011,11 @@ public: */ uint top_join_tab_count; uint send_group_parts; + /* + This counts how many times do_select() was invoked for this JOIN. + It's used to restrict Pushdown_query::execute() only to the first + do_select() invocation. + */ uint do_select_call_count; /* True if the query has GROUP BY. |