1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

cleanup: cosmetic fixes

This commit is contained in:
Sergei Golubchik
2019-04-20 12:13:42 +02:00
parent 6cc19078ba
commit d3b2228fd8
5 changed files with 6 additions and 9 deletions

View File

@@ -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; }
};