~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Monty Taylor
  • Date: 2009-05-08 19:07:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090508190739-rwas5y9xjg1a92p6
Reverted a crap-ton of padraig's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
/* Bits to show what an alter table will do */
38
38
#include <drizzled/sql_bitmap.h>
39
 
#include <drizzled/key_map.h>
40
39
 
41
40
#include<bitset>
42
41
 
374
373
  { assert(0); return "";}
375
374
 
376
375
 
 
376
  /**
 
377
    Signal that the table->read_set and table->write_set table maps changed
 
378
    The handler is allowed to set additional bits in the above map in this
 
379
    call. Normally the handler should ignore all calls until we have done
 
380
    a ha_rnd_init() or ha_index_init(), write_row(), update_row or delete_row()
 
381
    as there may be several calls to this routine.
 
382
  */
 
383
  virtual void column_bitmaps_signal();
377
384
  uint32_t get_index(void) const { return active_index; }
378
385
  virtual int close(void)=0;
379
386