~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
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_MYSQL_INTERFACE. */
 
1897
type QUE_FORK_DRIZZLE_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_MYSQL_INTERFACE, heap);
 
1911
        fork = que_fork_create(NULL, NULL, QUE_FORK_DRIZZLE_INTERFACE, heap);
1912
1912
        fork->trx = trx;
1913
1913
 
1914
1914
        thr = que_thr_create(fork, heap);