Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
In order to unify sql_yacc.yy and sql_yacc_ora.yy easier let's add these methods to LEX:
bool stmt_drop_function(const DDL_options_st &options, |
const Lex_ident_sys_st &db, |
const Lex_ident_sys_st &name); |
bool stmt_drop_function(const DDL_options_st &options, |
const Lex_ident_sys_st &name); |
bool stmt_drop_procedure(const DDL_options_st &options, |
sp_name *name);
|
bool stmt_alter_function_start(sp_name *name); |
bool stmt_alter_procedure_start(sp_name *name); |
and thus simplify the code in *.yy related to:
- DROP FUNCTION
- DROP PROCEDURE
- ALTER FUNCTION
- ALTER PROCEDURE
Attachments
Issue Links
- blocks
-
MDEV-12518 Unify sql_yacc.yy and sql_yacc_ora.yy
- Closed