~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.cc

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
namespace drizzled
33
33
{
34
34
 
35
 
void parse(drizzled::Session *session, const char *inBuf, uint32_t length);
 
35
void mysql_parse(drizzled::Session *session, const char *inBuf, uint32_t length);
36
36
 
37
37
namespace statement
38
38
{
219
219
    }
220
220
    else
221
221
    {
222
 
      parse(getSession(), to_execute.str, to_execute.length);
 
222
      mysql_parse(getSession(), to_execute.str, to_execute.length);
223
223
    }
224
224
  }
225
225