| 13192 | |
| 13193 | |
| 13194 | bool LEX::stmt_alter_procedure_start(sp_name *name) |
| 13195 | { |
| 13196 | if (unlikely(sphead)) |
| 13197 | { |
| 13198 | my_error(ER_SP_NO_DROP_SP, MYF(0), "PROCEDURE"); |
| 13199 | return true; |
| 13200 | } |
| 13201 | if (main_select_push()) |
| 13202 | return true; |
| 13203 | sp_chistics.init(); |
| 13204 | sql_command= SQLCOM_ALTER_PROCEDURE; |
| 13205 | spname= name; |
| 13206 | return false; |
| 13207 | } |
| 13208 | |
| 13209 | |
| 13210 | Spvar_definition *LEX::row_field_name(THD *thd, const Lex_ident_sys_st &name) |