MCPcopy Create free account
hub / github.com/MariaDB/server / stmt_alter_procedure_start

Method stmt_alter_procedure_start

sql/sql_lex.cc:13194–13207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13192
13193
13194bool 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
13210Spvar_definition *LEX::row_field_name(THD *thd, const Lex_ident_sys_st &name)

Callers

nothing calls this directly

Calls 2

my_errorFunction · 0.85
initMethod · 0.45

Tested by

no test coverage detected