Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
58d3dda3
Commit
58d3dda3
authored
Dec 17, 2002
by
pem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added parsing of CASE (both generic and "simple").
parent
b1593c9a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
80 additions
and
26 deletions
+80
-26
sql/sp_head.cc
sql/sp_head.cc
+1
-0
sql/sp_head.h
sql/sp_head.h
+2
-0
sql/sp_pcontext.cc
sql/sp_pcontext.cc
+0
-14
sql/sp_pcontext.h
sql/sp_pcontext.h
+1
-4
sql/sql_yacc.yy
sql/sql_yacc.yy
+76
-8
No files found.
sql/sp_head.cc
View file @
58d3dda3
...
...
@@ -84,6 +84,7 @@ eval_func_item(THD *thd, Item *it, enum enum_field_types type)
}
sp_head
::
sp_head
(
LEX_STRING
*
name
,
LEX
*
lex
)
:
m_simple_case
(
FALSE
)
{
const
char
*
dstr
=
(
const
char
*
)
lex
->
buf
;
...
...
sql/sp_head.h
View file @
58d3dda3
...
...
@@ -35,6 +35,8 @@ class sp_head : public Sql_alloc
public:
my_bool
m_simple_case
;
// TRUE if parsing simple case, FALSE otherwise
static
void
*
operator
new
(
size_t
size
)
{
return
(
void
*
)
sql_alloc
((
uint
)
size
);
...
...
sql/sp_pcontext.cc
View file @
58d3dda3
...
...
@@ -106,20 +106,6 @@ sp_pcontext::push_label(char *name, uint ip)
return
lab
;
}
sp_label_t
*
sp_pcontext
::
push_gen_label
(
uint
ip
)
{
sp_label_t
*
lab
=
NULL
;
char
*
s
=
my_malloc
(
10
,
MYF
(
MY_WME
));
// 10=...
if
(
s
)
{
sprintf
(
s
,
".%08x"
,
m_genlab
++
);
// ...9+1
lab
=
push_label
(
s
,
ip
);
}
return
lab
;
}
sp_label_t
*
sp_pcontext
::
find_label
(
char
*
name
)
{
...
...
sql/sp_pcontext.h
View file @
58d3dda3
...
...
@@ -99,7 +99,7 @@ class sp_pcontext : public Sql_alloc
inline
void
pop
(
uint
num
=
1
)
{
if
(
num
>=
m_i
)
if
(
num
<
m_i
)
m_i
-=
num
;
}
...
...
@@ -119,9 +119,6 @@ class sp_pcontext : public Sql_alloc
sp_label_t
*
push_label
(
char
*
name
,
uint
ip
);
sp_label_t
*
push_gen_label
(
uint
ip
);
sp_label_t
*
find_label
(
char
*
name
);
...
...
sql/sql_yacc.yy
View file @
58d3dda3
...
...
@@ -1030,7 +1030,6 @@ sp_decl_idents:
}
;
/* Dummy for the spset thing. Will go away when the SET problem is fixed. */
sp_proc_stmt:
{
Lex->sphead->reset_lex(YYTHD);
...
...
@@ -1045,13 +1044,39 @@ sp_proc_stmt:
lex->sphead->restore_lex(YYTHD);
}
| IF sp_if END IF {}
/* | sp_case */
| CASE_SYM WHEN_SYM
{
Lex->sphead->m_simple_case= FALSE;
}
sp_case END CASE_SYM {}
| CASE_SYM expr WHEN_SYM
{
/* We "fake" this by using an anonymous variable which we
set to the expression. Note that all WHENs are evaluate
at the same frame level, so we then know that it's the
top-most variable in the frame. */
LEX *lex= Lex;
uint offset= lex->spcont->current_framesize();
sp_instr_set *i = new sp_instr_set(lex->sphead->instructions(),
offset, $2, MYSQL_TYPE_STRING);
LEX_STRING dummy;
dummy.str= (char *)"";
dummy.length= 0;
lex->spcont->push(&dummy, MYSQL_TYPE_STRING, sp_param_in);
lex->sphead->add_instr(i);
lex->sphead->m_simple_case= TRUE;
}
sp_case END CASE_SYM
{
Lex->spcont->pop();
}
| sp_labeled_control
{}
| { /* Unlabeled controls get a secret label. */
LEX *lex= Lex;
lex->spcont->push_
gen_label(
lex->sphead->instructions());
lex->spcont->push_
label((char *)"",
lex->sphead->instructions());
}
sp_unlabeled_control
{
...
...
@@ -1127,7 +1152,7 @@ sp_if:
uint ip= sp->instructions();
sp_instr_jump_if_not *i = new sp_instr_jump_if_not(ip, $1);
sp->push_backpatch(i, ctx->push_
gen_label(0)); /* Forward only */
sp->push_backpatch(i, ctx->push_
label((char *)"", 0));
sp->add_instr(i);
}
sp_proc_stmts
...
...
@@ -1139,15 +1164,13 @@ sp_if:
sp->add_instr(i);
sp->backpatch(ctx->pop_label());
sp->push_backpatch(i, ctx->push_
gen_label(0)); /* Forward only */
sp->push_backpatch(i, ctx->push_
label((char *)"", 0));
}
sp_elseifs
{
LEX *lex= Lex;
sp_head *sp= lex->sphead;
sp_pcontext *ctx= lex->spcont;
sp->backpatch(ctx
->pop_label());
lex->sphead->backpatch(lex->spcont
->pop_label());
}
;
...
...
@@ -1157,6 +1180,51 @@ sp_elseifs:
| ELSE sp_proc_stmts
;
sp_case:
expr THEN_SYM
{
sp_head *sp= Lex->sphead;
sp_pcontext *ctx= Lex->spcont;
uint ip= sp->instructions();
sp_instr_jump_if_not *i;
if (! sp->m_simple_case)
i= new sp_instr_jump_if_not(ip, $1);
else
{ /* Simple case: <caseval> = <whenval> */
Item *var= (Item*) new Item_splocal(ctx->current_framesize()-1);
Item *expr= Item_bool_func2::eq_creator(var, $1);
i= new sp_instr_jump_if_not(ip, expr);
}
sp->push_backpatch(i, ctx->push_label((char *)"", 0));
sp->add_instr(i);
}
sp_proc_stmts
{
sp_head *sp= Lex->sphead;
sp_pcontext *ctx= Lex->spcont;
uint ip= sp->instructions();
sp_instr_jump *i = new sp_instr_jump(ip);
sp->add_instr(i);
sp->backpatch(ctx->pop_label());
sp->push_backpatch(i, ctx->push_label((char *)"", 0));
}
sp_whens
{
LEX *lex= Lex;
lex->sphead->backpatch(lex->spcont->pop_label());
}
;
sp_whens:
/* Empty */
| WHEN_SYM sp_case
| ELSE sp_proc_stmts
;
sp_labeled_control:
IDENT ':'
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment