~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/display.cc

  • Committer: Brian Aker
  • Date: 2011-05-21 00:29:07 UTC
  • mto: This revision was merged to the branch mainline in revision 2314.
  • Revision ID: brian@tangent.org-20110521002907-y1i1d7ed6pgeendv
Just a shuffle so that INIT_DB enum makes a bit more sense when you read it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
static const std::string COM_SLEEP("COM_SLEEP"); 
36
36
static const std::string COM_QUIT("COM_QUIT"); 
37
 
static const std::string COM_INIT_DB("COM_INIT_DB"); 
 
37
static const std::string COM_USE_SCHEMA("COM_USE_SCHEMA"); 
38
38
static const std::string COM_QUERY("COM_QUERY"); 
39
39
static const std::string COM_SHUTDOWN("COM_SHUTDOWN"); 
40
40
static const std::string COM_CONNECT("COM_CONNECT"); 
134
134
  {
135
135
  case drizzled::COM_SLEEP : 
136
136
    return COM_SLEEP;
 
137
 
137
138
  case drizzled::COM_KILL : 
138
139
    {
139
140
      static std::string COM_KILL("COM_KILL");
140
141
      return COM_KILL;
141
142
    }
 
143
 
142
144
  case drizzled::COM_QUIT : 
143
145
    return COM_QUIT;
144
 
  case drizzled::COM_INIT_DB : 
145
 
    return COM_INIT_DB;
 
146
 
 
147
  case drizzled::COM_USE_SCHEMA : 
 
148
    return COM_USE_SCHEMA;
 
149
 
146
150
  case drizzled::COM_QUERY : 
147
151
    return COM_QUERY;
 
152
 
148
153
  case drizzled::COM_SHUTDOWN : 
149
154
    return COM_SHUTDOWN;
 
155
 
150
156
  case drizzled::COM_CONNECT : 
151
157
    return COM_CONNECT;
 
158
 
152
159
  case drizzled::COM_PING : 
153
160
    return COM_PING;
 
161
 
154
162
  case drizzled::COM_END : 
155
163
    return COM_END;
156
164
  }