@@ -1878,7 +1878,7 @@ END_OF_INPUT
1878
1878
%type <NONE> call sp_proc_stmts sp_proc_stmts1 sp_proc_stmt
1879
1879
%type <NONE> sp_proc_stmt_statement sp_proc_stmt_return
1880
1880
%type <NONE> sp_proc_stmt_if
1881
- %type <NONE> sp_labeled_control sp_proc_stmt_unlabeled
1881
+ %type <NONE> sp_labeled_control sp_unlabeled_control
1882
1882
%type <NONE> sp_labeled_block sp_unlabeled_block
1883
1883
%type <NONE> sp_proc_stmt_leave
1884
1884
%type <NONE> sp_proc_stmt_iterate
@@ -2705,7 +2705,7 @@ ev_sql_stmt_inner:
2705
2705
| sp_labeled_block
2706
2706
| sp_unlabeled_block
2707
2707
| sp_labeled_control
2708
- | sp_proc_stmt_unlabeled
2708
+ | sp_unlabeled_control
2709
2709
| sp_proc_stmt_leave
2710
2710
| sp_proc_stmt_iterate
2711
2711
| sp_proc_stmt_open
@@ -3633,7 +3633,7 @@ sp_proc_stmt:
3633
3633
| sp_labeled_block
3634
3634
| sp_unlabeled_block
3635
3635
| sp_labeled_control
3636
- | sp_proc_stmt_unlabeled
3636
+ | sp_unlabeled_control
3637
3637
| sp_proc_stmt_leave
3638
3638
| sp_proc_stmt_iterate
3639
3639
| sp_proc_stmt_open
@@ -3731,14 +3731,14 @@ sp_proc_stmt_return:
3731
3731
}
3732
3732
;
3733
3733
3734
- sp_proc_stmt_unlabeled :
3734
+ sp_unlabeled_control :
3735
3735
{ /* Unlabeled controls get a secret label. */
3736
3736
LEX *lex= Lex;
3737
3737
3738
3738
lex->spcont ->push_label (thd, empty_lex_str,
3739
3739
lex->sphead ->instructions ());
3740
3740
}
3741
- sp_unlabeled_control
3741
+ sp_control_content
3742
3742
{
3743
3743
LEX *lex= Lex;
3744
3744
@@ -4136,7 +4136,7 @@ sp_labeled_control:
4136
4136
lab->type = sp_label::ITERATION;
4137
4137
}
4138
4138
}
4139
- sp_unlabeled_control sp_opt_label
4139
+ sp_control_content sp_opt_label
4140
4140
{
4141
4141
LEX *lex= Lex;
4142
4142
sp_label *lab= lex->spcont ->pop_label ();
@@ -4241,7 +4241,7 @@ sp_block_content:
4241
4241
}
4242
4242
;
4243
4243
4244
- sp_unlabeled_control :
4244
+ sp_control_content :
4245
4245
LOOP_SYM
4246
4246
sp_proc_stmts1 END LOOP_SYM
4247
4247
{
0 commit comments