diff options
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 00863e9af2b..89d7fa67f6b 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -598,6 +598,17 @@ public: }; +class Item_func_binlog_gtid_pos :public Item_str_func +{ + String tmp_value; +public: + Item_func_binlog_gtid_pos(Item *arg1,Item *arg2) :Item_str_func(arg1,arg2) {} + String *val_str(String *); + void fix_length_and_dec(); + const char *func_name() const { return "binlog_gtid_pos"; } +}; + + class Item_func_rpad :public Item_str_func { String tmp_value, rpad_str; |