~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-12-26 00:22:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226002234-2sb62sm2gs0iftuy
Fixing some of the innodb c++ casting issues.

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 */