~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

Fixes compile errors mostly due to change from plugin_registry.h to plugin/registry.h
and the final cleanup of bitmap routines now in trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include <plugin/myisam/myisam.h>
27
27
#include <mysys/hash.h>
 
28
#include <mysys/my_bitmap.h>
28
29
#include "drizzled/order.h"
29
30
#include "drizzled/filesort_info.h"
30
31
#include "drizzled/natural_join_column.h"
496
497
 
497
498
  inline void clearReadSet(uint32_t index)
498
499
  {
499
 
    bitmap_clear_bit(read_set, index);
 
500
    read_set->clearBit(index);
500
501
  }
501
502
 
502
503
  inline void clearReadSet()
503
504
  {
504
 
    bitmap_clear_all(read_set);
 
505
    read_set->clearAll();
505
506
  }
506
507
 
507
508
  inline bool isWriteSet(uint32_t index)
521
522
 
522
523
  inline void clearWriteSet(uint32_t index)
523
524
  {
524
 
    bitmap_clear_bit(write_set, index);
 
525
    write_set->clearBit(index);
525
526
  }
526
527
 
527
528
  inline void clearWriteSet()
528
529
  {
529
 
    bitmap_clear_all(write_set);
 
530
    write_set->clearAll();
530
531
  }
531
532
 
532
533
  /* Is table open or should be treated as such by name-locking? */