diff options
author | Sergei Golubchik <serg@mariadb.org> | 2019-04-20 12:13:42 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-04-24 16:06:54 +0200 |
commit | d3b2228fd8b9ba13f8adedfee144d222b32b1cec (patch) | |
tree | 28b915212d9b556d53e4eeca6d44f03629606185 /sql/item_sum.h | |
parent | 6cc19078ba7f2db521d44a3b8b9f0d5ea135625c (diff) | |
download | mariadb-git-d3b2228fd8b9ba13f8adedfee144d222b32b1cec.tar.gz |
cleanup: cosmetic fixes
Diffstat (limited to 'sql/item_sum.h')
-rw-r--r-- | sql/item_sum.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_sum.h b/sql/item_sum.h index d6ccfeb8529..dc672486bce 100644 --- a/sql/item_sum.h +++ b/sql/item_sum.h @@ -1479,8 +1479,8 @@ public: enum Sumfunctype sum_func () const {return GROUP_CONCAT_FUNC;} const char *func_name() const { return "group_concat"; } - virtual Item_result result_type () const { return STRING_RESULT; } - virtual Field *make_string_field(TABLE *table); + Item_result result_type () const { return STRING_RESULT; } + Field *make_string_field(TABLE *table); enum_field_types field_type() const { if (too_big_for_varchar()) @@ -1522,8 +1522,8 @@ public: String* val_str(String* str); Item *copy_or_same(THD* thd); void no_rows_in_result() {} - virtual void print(String *str, enum_query_type query_type); - virtual bool change_context_processor(uchar *cntx) + void print(String *str, enum_query_type query_type); + bool change_context_processor(uchar *cntx) { context= (Name_resolution_context *)cntx; return FALSE; } }; |