~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

Reverted my change to interval_list

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_OPEN_TABLES_STATE_H
22
22
#define DRIZZLED_OPEN_TABLES_STATE_H
23
23
 
24
 
#include "drizzled/lock.h"
25
 
 
26
 
namespace drizzled
27
 
{
28
24
 
29
25
/**
30
26
  Class that holds information about tables which were opened and locked
72
68
   */
73
69
  DRIZZLE_LOCK *extra_lock;
74
70
 
75
 
  uint64_t version;
 
71
  ulong version;
76
72
  uint32_t current_tablenr;
77
73
 
78
74
  /*
85
81
    which are used as backup storage.
86
82
  */
87
83
  Open_tables_state() : backups_available(false) { }
88
 
  virtual ~Open_tables_state() {}
89
84
 
90
 
  Open_tables_state(uint64_t version_arg);
 
85
  Open_tables_state(ulong version_arg);
91
86
 
92
87
  void set_open_tables_state(Open_tables_state *state)
93
88
  {
102
97
  }
103
98
};
104
99
 
105
 
} /* namespace drizzled */
106
 
 
107
100
#endif /* DRIZZLED_OPEN_TABLES_STATE_H */