~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-17 22:46:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2442.
  • Revision ID: olafvdspek@gmail.com-20111017224616-gcj9z1sjpauwsp14
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
  return true;
267
267
}
268
268
 
269
 
bool buildEngineStatus(Session *session, lex_string_t)
 
269
bool buildEngineStatus(Session *session, str_ref)
270
270
{
271
271
  session->lex().sql_command= SQLCOM_SELECT;
272
272
  drizzled::statement::Show *select= new statement::Show(session);
479
479
  return true;
480
480
}
481
481
 
482
 
bool buildCreateSchema(Session *session, lex_string_t &ident)
 
482
bool buildCreateSchema(Session *session, str_ref ident)
483
483
{
484
484
  session->lex().sql_command= SQLCOM_SELECT;
485
485
  drizzled::statement::Show *select= new statement::Show(session);