~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common.h

  • Committer: Brian Aker
  • Date: 2009-03-10 07:23:05 UTC
  • mto: This revision was merged to the branch mainline in revision 925.
  • Revision ID: brian@tangent.org-20090310072305-jan5y25z6nib370b
Remove final dead COM bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
 
149
149
enum enum_server_command
150
150
{
151
 
  COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY,
152
 
  COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN,
153
 
  COM_CONNECT, COM_PING,
154
 
  COM_CONNECT_OUT,
 
151
  COM_SLEEP,
 
152
  COM_QUIT,
 
153
  COM_INIT_DB,
 
154
  COM_QUERY,
 
155
  COM_SHUTDOWN,
 
156
  COM_CONNECT,
 
157
  COM_PING,
155
158
  /* don't forget to update const char *command_name[] in sql_parse.cc */
156
 
 
157
159
  /* Must be last */
158
160
  COM_END
159
161
};
198
200
#define FIELD_STORAGE_FLAGS 22          /* Storage type: bit 22, 23 and 24 */
199
201
#define COLUMN_FORMAT_FLAGS 25          /* Column format: bit 25, 26 and 27 */
200
202
 
201
 
#define REFRESH_GRANT           1       /* Refresh grant tables */
202
203
#define REFRESH_LOG             2       /* Start on new log file */
203
204
#define REFRESH_TABLES          4       /* close all tables */
204
 
#define REFRESH_HOSTS           8       /* Flush host cache */
205
205
#define REFRESH_STATUS          16      /* Flush status variables */
206
206
 
207
207
/* The following can't be set with mysql_refresh() */