~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.cc

  • Committer: David Shrewsbury
  • Date: 2011-01-13 18:43:55 UTC
  • mto: (2081.1.2 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2082.
  • Revision ID: shrewsbury.dave@gmail.com-20110113184355-wsmu0grg7tkxwdsc
Push ALTER SCHEMA through replication stream as proper GPB message instead of RAW_SQL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
namespace drizzled
33
33
{
34
34
 
35
 
void mysql_parse(drizzled::Session *session, const char *inBuf, uint32_t length);
 
35
void 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
 
      mysql_parse(getSession(), to_execute.str, to_execute.length);
 
222
      parse(getSession(), to_execute.str, to_execute.length);
223
223
    }
224
224
  }
225
225