~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.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:
374
374
  { assert(0); return "";}
375
375
 
376
376
 
377
 
  /**
378
 
    Signal that the table->read_set and table->write_set table maps changed
379
 
    The handler is allowed to set additional bits in the above map in this
380
 
    call. Normally the handler should ignore all calls until we have done
381
 
    a ha_rnd_init() or ha_index_init(), write_row(), update_row or delete_row()
382
 
    as there may be several calls to this routine.
383
 
  */
384
 
  virtual void column_bitmaps_signal();
385
377
  uint32_t get_index(void) const { return active_index; }
386
378
  virtual int close(void)=0;
387
379