~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Padraig O'Sullivan
  • Date: 2010-10-16 19:31:35 UTC
  • mto: (1859.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: osullivan.padraig@gmail.com-20101016193135-75fdbfizty54g9of
Replaced a uint8_t member with a standard bitset since it was being used as a bitset....

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
      UNCACHEABLE_EXPLAIN
249
249
      UNCACHEABLE_PREPARE
250
250
  */
251
 
  uint8_t uncacheable;
 
251
  std::bitset<8> uncacheable;
252
252
  enum sub_select_type linkage;
253
253
  bool no_table_names_allowed; /* used for global order by */
254
254
  bool no_error; /* suppress error message (convert it to warnings) */