~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
  return true;
275
275
}
276
276
 
277
 
bool buildEngineStatus(Session *session, LEX_STRING)
 
277
bool buildEngineStatus(Session *session, lex_string_t)
278
278
{
279
279
  session->lex().sql_command= SQLCOM_SELECT;
280
280
  drizzled::statement::Show *select= new statement::Show(session);
504
504
  return true;
505
505
}
506
506
 
507
 
bool buildCreateSchema(Session *session, LEX_STRING &ident)
 
507
bool buildCreateSchema(Session *session, lex_string_t &ident)
508
508
{
509
509
  session->lex().sql_command= SQLCOM_SELECT;
510
510
  drizzled::statement::Show *select= new statement::Show(session);