diff options
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index 90400b4181a..5810307e81c 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -778,6 +778,18 @@ class Item_func_release_lock :public Item_int_func void fix_length_and_dec() { decimals=0; max_length=1; maybe_null=1;} }; +/* replication functions */ + +class Item_master_pos_wait :public Item_int_func +{ + String value; + public: + Item_master_pos_wait(Item *a,Item *b) :Item_int_func(a,b) {} + longlong val_int(); + const char *func_name() const { return "master_pos_wait"; } + void fix_length_and_dec() { decimals=0; max_length=1; maybe_null=1;} +}; + /* Handling of user definiable variables */ |