~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

Extracted the show processlist command into a class with its own
implementation files. Removed the corresponding case label from the switch
statement.

Show diffs side-by-side

added added

removed removed

Lines of Context:
988
988
    res= mysql_rm_table(session, first_table, lex->drop_if_exists, lex->drop_temporary);
989
989
  }
990
990
  break;
991
 
  case SQLCOM_SHOW_PROCESSLIST:
992
 
    mysqld_list_processes(session, NULL, lex->verbose);
993
 
    break;
994
991
  case SQLCOM_CHANGE_DB:
995
992
  {
996
993
    LEX_STRING db_str= { (char *) select_lex->db, strlen(select_lex->db) };