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/sp_pcontext.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/sp_pcontext.h')
-rw-r--r-- | sql/sp_pcontext.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h index 0d218bc0538..196f9ccb24b 100644 --- a/sql/sp_pcontext.h +++ b/sql/sp_pcontext.h @@ -72,6 +72,11 @@ typedef struct sp_cond sp_cond_type_t *val; } sp_cond_t; + +/* + This seems to be an "SP parsing context" or something. +*/ + class sp_pcontext : public Sql_alloc { sp_pcontext(const sp_pcontext &); /* Prevent use of these */ |