summaryrefslogtreecommitdiff
path: root/sql/sp_pcontext.h
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-08-25 17:34:34 +0400
committersergefp@mysql.com <>2005-08-25 17:34:34 +0400
commit95c3afc5d99548a2239eafa070b263f5161a22d2 (patch)
tree97a53e7de82a610327287be68d515c8dc566aeb2 /sql/sp_pcontext.h
parent2a880905c48c897e67e8f75999b30f5b7f9875e6 (diff)
downloadmariadb-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.h5
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 */