~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2009-05-05 00:22:46 UTC
  • mfrom: (1003.1.6 merge)
  • Revision ID: brian@gaz-20090505002246-m4ol528i6me7vikf
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
  */
268
268
  bool open_placeholder;
269
269
  bool locked_by_logger;
270
 
  bool no_replicate;
271
270
  bool locked_by_name;
272
271
  bool no_cache;
273
 
  /* To signal that the table is associated with a HANDLER statement */
274
 
  bool open_by_handler;
 
272
 
275
273
  /*
276
274
    To indicate that a non-null value of the auto_increment field
277
275
    was provided by the user or retrieved from the current record.
302
300
  {
303
301
    read_set= read_set_arg;
304
302
    write_set= write_set_arg;
305
 
    if (file)
306
 
      file->column_bitmaps_signal();
307
303
  }
308
304
  inline void column_bitmaps_set_no_signal(std::bitset<MAX_FIELDS> *read_set_arg,
309
305
                                           std::bitset<MAX_FIELDS> *write_set_arg)