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/group_by_handler.cc | |
parent | cf50e13fbd1b4d27a3542fe2751216d274eb7493 (diff) | |
download | mariadb-git-e8daa41885b50094285f82f2a95e882b3dcab153.tar.gz |
typos in comments, minor stylistic edits
Diffstat (limited to 'sql/group_by_handler.cc')
-rw-r--r-- | sql/group_by_handler.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sql/group_by_handler.cc b/sql/group_by_handler.cc index db03ce9196b..ba798967d34 100644 --- a/sql/group_by_handler.cc +++ b/sql/group_by_handler.cc @@ -1,5 +1,5 @@ /* - Copyright (c) 2014, SkySQL Ab & MariaDB Foundation + Copyright (c) 2014, 2015 SkySQL Ab & MariaDB Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,10 +21,6 @@ upper level. */ -#ifdef USE_PRAGMA_IMPLEMENTATION -#pragma implementation // gcc: Class implementation -#endif - #include "sql_priv.h" #include "sql_select.h" @@ -45,7 +41,7 @@ int group_by_handler::execute(JOIN *join) ha_rows max_limit; ha_rows *reset_limit= 0; Item **reset_item= 0; - DBUG_ENTER("group_by_handler"); + DBUG_ENTER("group_by_handler::execute"); if ((err= init_scan())) goto error; |