~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2008-09-09 20:10:57 UTC
  • mto: (383.2.4 fix-failing-tests)
  • mto: This revision was merged to the branch mainline in revision 386.
  • Revision ID: jay@mysql.com-20080909201057-3qkgcxqaps2s58y9
Re-enabled a number of passing tests from trunk

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
 
UNIV_INTERN
 
17
 
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
 
UNIV_INTERN
 
93
 
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
 
UNIV_INTERN
 
129
 
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
 
UNIV_INTERN
 
156
 
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
 
UNIV_INTERN
 
218
 
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
 
UNIV_INTERN
 
250
 
251
251
que_thr_t*
252
252
return_step(
253
253
/*========*/