diff options
author | unknown <pem@mysql.com> | 2006-01-16 15:37:25 +0100 |
---|---|---|
committer | unknown <pem@mysql.com> | 2006-01-16 15:37:25 +0100 |
commit | 746705da8ea30bb6e20c97c8258d1c9e71bf9215 (patch) | |
tree | edb91858f12cf3e9bdd73845bf4b3a8695c550af /sql/sp_pcontext.h | |
parent | bf38d0077096280bea615feb1a77200a93fe2624 (diff) | |
parent | 29915d6e1c71289fbae57aa7948e3453bf78485e (diff) | |
download | mariadb-git-746705da8ea30bb6e20c97c8258d1c9e71bf9215.tar.gz |
Merge mysql.com:/extern/mysql/bk/mysql-5.0
into mysql.com:/extern/mysql/work/bug14498/mysql-5.0
sql/sp_head.h:
Auto merged
sql/sp_pcontext.h:
Auto merged
mysql-test/r/sp.result:
Manual merge.
mysql-test/t/sp.test:
Manual merge.
sql/sp_head.cc:
Manual merge.
sql/sql_yacc.yy:
Manual merge.
Diffstat (limited to 'sql/sp_pcontext.h')
-rw-r--r-- | sql/sp_pcontext.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h index 6d803362d86..d1cd7b964c2 100644 --- a/sql/sp_pcontext.h +++ b/sql/sp_pcontext.h @@ -52,6 +52,15 @@ typedef struct sp_pvar #define SP_LAB_BEGIN 2 // Label at BEGIN #define SP_LAB_ITER 3 // Label at iteration control +/* + An SQL/PSM label. Can refer to the identifier used with the + "label_name:" construct which may precede some SQL/PSM statements, or + to an implicit implementation-dependent identifier which the parser + inserts before a high-level flow control statement such as + IF/WHILE/REPEAT/LOOP, when such statement is rewritten into + a combination of low-level jump/jump_if instructions and labels. +*/ + typedef struct sp_label { char *name; |