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

Method stmt_alter_function_start

sql/sql_lex.cc:13178–13191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13176
13177
13178bool LEX::stmt_alter_function_start(sp_name *name)
13179{
13180 if (unlikely(sphead))
13181 {
13182 my_error(ER_SP_NO_DROP_SP, MYF(0), "FUNCTION");
13183 return true;
13184 }
13185 if (main_select_push())
13186 return true;
13187 sp_chistics.init();
13188 sql_command= SQLCOM_ALTER_FUNCTION;
13189 spname= name;
13190 return false;
13191}
13192
13193
13194bool LEX::stmt_alter_procedure_start(sp_name *name)

Callers

nothing calls this directly

Calls 2

my_errorFunction · 0.85
initMethod · 0.45

Tested by

no test coverage detected