diff options
author | pem@mysql.com <> | 2006-04-18 11:07:34 +0200 |
---|---|---|
committer | pem@mysql.com <> | 2006-04-18 11:07:34 +0200 |
commit | a6fbde9db78b91f0f069030b85dc3ba59e543b9f (patch) | |
tree | 2a15be5d9efaec8002a29111e29209f9a5111925 /sql/sp_pcontext.cc | |
parent | 2caec302fac0e7f28c661b49b251efcd35d8a3d1 (diff) | |
download | mariadb-git-a6fbde9db78b91f0f069030b85dc3ba59e543b9f.tar.gz |
Fixed BUG#18949: Test case sp-goto is disabled
Removed sp-goto.test, sp-goto.result and all (disabled) GOTO code.
Also removed some related code that's not needed any more (no possible
unresolved label references any more, so no need to check for them).
NB: Keeping the ER_SP_GOTO_IN_HNDLR in errmsg.txt; it might become useful
in the future, and removing it (and thus re-enumerating error codes)
might upset things. (Anything referring to explicit error codes.)
Diffstat (limited to 'sql/sp_pcontext.cc')
-rw-r--r-- | sql/sp_pcontext.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_pcontext.cc b/sql/sp_pcontext.cc index 448df908a32..b0b65d5313b 100644 --- a/sql/sp_pcontext.cc +++ b/sql/sp_pcontext.cc @@ -241,7 +241,7 @@ sp_pcontext::push_label(char *name, uint ip) { lab->name= name; lab->ip= ip; - lab->type= SP_LAB_GOTO; + lab->type= SP_LAB_IMPL; lab->ctx= this; m_label.push_front(lab); } |