~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/enum.h

  • Committer: Brian Aker
  • Date: 2009-11-14 23:51:37 UTC
  • mfrom: (1217.1.2 staging)
  • Revision ID: brian@gaz-20091114235137-k8yrpjlmo9qj36w6
Remove open mode/dead bits around dead temp type.

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
 
 
89
74
enum enum_parsing_place
90
75
{
91
76
  NO_MATTER, 
240
225
  NON_TRANSACTIONAL_TMP_TABLE, 
241
226
  TRANSACTIONAL_TMP_TABLE,
242
227
  INTERNAL_TMP_TABLE, 
243
 
  SYSTEM_TMP_TABLE, 
244
 
  TMP_TABLE_FRM_FILE_ONLY
 
228
  SYSTEM_TMP_TABLE
245
229
};
246
230
 
247
231
/*