diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2015-11-18 22:55:17 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2015-11-26 11:34:16 +0400 |
commit | 0746a0770867b621cb4fee08239419bec69a2de8 (patch) | |
tree | 2c623b43229b17dd196fcb9c965c8c52c607f390 /sql/item_row.h | |
parent | 464394bf478a7f3b397ec7045627f827a34c1f09 (diff) | |
download | mariadb-git-0746a0770867b621cb4fee08239419bec69a2de8.tar.gz |
MDEV-8718 - Obsolete sql_strmake() in favor of THD::strmake() and thd_strmake()
Diffstat (limited to 'sql/item_row.h')
-rw-r--r-- | sql/item_row.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index cf55eddc19c..c9e94ed2efe 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -49,7 +49,7 @@ public: enum Type type() const { return ROW_ITEM; }; void illegal_method_call(const char *); bool is_null() { return null_value; } - void make_field(Send_field *) + void make_field(THD *thd, Send_field *) { illegal_method_call((const char*)"make_field"); }; |