diff options
author | sergefp@mysql.com <> | 2005-08-25 17:34:34 +0400 |
---|---|---|
committer | sergefp@mysql.com <> | 2005-08-25 17:34:34 +0400 |
commit | 95c3afc5d99548a2239eafa070b263f5161a22d2 (patch) | |
tree | 97a53e7de82a610327287be68d515c8dc566aeb2 /sql/item_create.h | |
parent | 2a880905c48c897e67e8f75999b30f5b7f9875e6 (diff) | |
download | mariadb-git-95c3afc5d99548a2239eafa070b263f5161a22d2.tar.gz |
Fix for BUG#12335 (SP replication) : New binlogging strategy for stored PROCEDUREs/FUNCTIONs.
"Interleaved SPs execution is now binlogged properly, "SELECT spfunc()" is binlogged too.
The known remaining issue is binlogging/replication of "a routine is deleted while it is executed" scenario.
Diffstat (limited to 'sql/item_create.h')
-rw-r--r-- | sql/item_create.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_create.h b/sql/item_create.h index d757318bfc1..35db9be3c89 100644 --- a/sql/item_create.h +++ b/sql/item_create.h @@ -65,6 +65,7 @@ Item *create_func_ltrim(Item* a); Item *create_func_md5(Item* a); Item *create_func_mod(Item* a, Item *b); Item *create_func_monthname(Item* a); +Item *create_func_name_const(Item *a, Item *b); Item *create_func_nullif(Item* a, Item *b); Item *create_func_oct(Item *); Item *create_func_ord(Item* a); |