~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/eval0proc.ic

  • Committer: Olaf van der Spek
  • Date: 2011-10-10 09:27:50 UTC
  • mto: (2430.1.6 rf)
  • mto: This revision was merged to the branch mainline in revision 2436.
  • Revision ID: olafvdspek@gmail.com-20111010092750-ryxgmn7zj5yvxfkf
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
        ut_ad(thr);
42
42
 
43
 
        node = thr->run_node;
 
43
        node = static_cast<proc_node_t *>(thr->run_node);
44
44
        ut_ad(que_node_get_type(node) == QUE_NODE_PROC);
45
45
 
46
46
        if (thr->prev_node == que_node_get_parent(node)) {
75
75
 
76
76
        ut_ad(thr);
77
77
 
78
 
        node = thr->run_node;
 
78
        node = static_cast<func_node_t *>(thr->run_node);
79
79
        ut_ad(que_node_get_type(node) == QUE_NODE_FUNC);
80
80
 
81
81
        /* Evaluate the procedure */