~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/enum.h

Fixed bashism.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
  DERIVATION_EXPLICIT= 0
72
72
};
73
73
 
 
74
/**
 
75
 * Opening modes for open_temporary_table and open_table_from_share
 
76
 *
 
77
 * @TODO Put this into an appropriate header. It is only needed in:
 
78
 *
 
79
 *    table.cc
 
80
 *    sql_base.cc
 
81
 */
 
82
enum open_table_mode
 
83
{
 
84
  OTM_OPEN= 0,
 
85
  OTM_CREATE= 1,
 
86
  OTM_ALTER= 2
 
87
};
 
88
 
74
89
enum enum_parsing_place
75
90
{
76
91
  NO_MATTER, 
225
240
  NON_TRANSACTIONAL_TMP_TABLE, 
226
241
  TRANSACTIONAL_TMP_TABLE,
227
242
  INTERNAL_TMP_TABLE, 
228
 
  SYSTEM_TMP_TABLE
 
243
  SYSTEM_TMP_TABLE, 
 
244
  TMP_TABLE_FRM_FILE_ONLY
229
245
};
230
246
 
231
247
/*