~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/eval/eval0proc.c

  • Committer: Brian Aker
  • Date: 2008-10-28 08:36:02 UTC
  • mfrom: (520.4.13 merge-innodb-plugin)
  • Revision ID: brian@tangent.org-20081028083602-0p3zzlhlxr5q2sqo
Merging Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
/**************************************************************************
16
16
Performs an execution step of an if-statement node. */
17
 
 
 
17
UNIV_INTERN
18
18
que_thr_t*
19
19
if_step(
20
20
/*====*/
90
90
 
91
91
/**************************************************************************
92
92
Performs an execution step of a while-statement node. */
93
 
 
 
93
UNIV_INTERN
94
94
que_thr_t*
95
95
while_step(
96
96
/*=======*/
126
126
 
127
127
/**************************************************************************
128
128
Performs an execution step of an assignment statement node. */
129
 
 
 
129
UNIV_INTERN
130
130
que_thr_t*
131
131
assign_step(
132
132
/*========*/
153
153
 
154
154
/**************************************************************************
155
155
Performs an execution step of a for-loop node. */
156
 
 
 
156
UNIV_INTERN
157
157
que_thr_t*
158
158
for_step(
159
159
/*=====*/
215
215
 
216
216
/**************************************************************************
217
217
Performs an execution step of an exit statement node. */
218
 
 
 
218
UNIV_INTERN
219
219
que_thr_t*
220
220
exit_step(
221
221
/*======*/
247
247
 
248
248
/**************************************************************************
249
249
Performs an execution step of a return-statement node. */
250
 
 
 
250
UNIV_INTERN
251
251
que_thr_t*
252
252
return_step(
253
253
/*========*/