~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/pars/pars0pars.c

Removed SCCS references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
 
152
152
        node->func = func;
153
153
 
154
 
        node->klass = pars_func_get_class(func);
 
154
        node->class = pars_func_get_class(func);
155
155
 
156
156
        node->args = arg;
157
157
 
670
670
 
671
671
                        func_node = exp_node;
672
672
 
673
 
                        if (func_node->klass == PARS_FUNC_AGGREGATE) {
 
673
                        if (func_node->class == PARS_FUNC_AGGREGATE) {
674
674
 
675
675
                                n_aggregate_nodes++;
676
676
                        }
1894
1894
/**********************************************************************
1895
1895
Completes a query graph by adding query thread and fork nodes
1896
1896
above it and prepares the graph for running. The fork created is of
1897
 
type QUE_FORK_DRIZZLE_INTERFACE. */
 
1897
type QUE_FORK_MYSQL_INTERFACE. */
1898
1898
 
1899
1899
que_thr_t*
1900
1900
pars_complete_graph_for_exec(
1908
1908
        que_fork_t*     fork;
1909
1909
        que_thr_t*      thr;
1910
1910
 
1911
 
        fork = que_fork_create(NULL, NULL, QUE_FORK_DRIZZLE_INTERFACE, heap);
 
1911
        fork = que_fork_create(NULL, NULL, QUE_FORK_MYSQL_INTERFACE, heap);
1912
1912
        fork->trx = trx;
1913
1913
 
1914
1914
        thr = que_thr_create(fork, heap);