diff options
Diffstat (limited to 'sql/group_by_handler.h')
-rw-r--r-- | sql/group_by_handler.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sql/group_by_handler.h b/sql/group_by_handler.h index 97ee44d73d3..ff3b204fa56 100644 --- a/sql/group_by_handler.h +++ b/sql/group_by_handler.h @@ -14,6 +14,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */ +#ifndef GROUP_BY_HANDLER_INCLUDED +#define GROUP_BY_HANDLER_INCLUDED + +class Select_limit_counters; /* This file implements the group_by_handler interface. This interface can be used by storage handlers that can intercept summary or GROUP @@ -56,7 +60,7 @@ struct Query ORDER *order_by; Item *having; // LIMIT - //ha_rows select_limit_cnt, offset_limit_cnt; + Select_limit_counters *limit; }; class group_by_handler @@ -101,3 +105,4 @@ public: virtual void print_error(int error, myf errflag); }; +#endif //GROUP_BY_HANDLER_INCLUDED |