~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_base.h

  • Committer: Brian Aker
  • Date: 2008-07-08 20:52:20 UTC
  • Revision ID: brian@tangent.org-20080708205220-jj590log4vjwhrge
Final cleanup on enum for MEMORY/DISK

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
  HA_BUILD_OFFLINE 
104
104
};
105
105
 
106
 
        /* Storage media types */ 
107
 
 
108
 
enum ha_storage_media {
109
 
  HA_SM_DEFAULT=        0               /* Not specified (engine default) */
110
 
};
111
 
 
112
106
        /* The following is parameter to ha_extra() */
113
107
 
114
108
enum ha_extra_function {
192
186
  */
193
187
  HA_EXTRA_INSERT_WITH_UPDATE,
194
188
  /* Inform handler that we will do a rename */
195
 
  HA_EXTRA_PREPARE_FOR_RENAME,
196
 
  /*
197
 
    Orders MERGE handler to attach or detach its child tables. Used at
198
 
    begin and end of a statement.
199
 
  */
200
 
  HA_EXTRA_ATTACH_CHILDREN,
201
 
  HA_EXTRA_DETACH_CHILDREN
 
189
  HA_EXTRA_PREPARE_FOR_RENAME
202
190
};
203
191
 
204
192
/* Compatible option, to be deleted in 6.0 */