~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
class COND_EQUAL;
48
48
class SecurityContext;
49
49
class TableList;
50
 
class Field_timestamp;
 
50
namespace field {
 
51
class Epoch;
 
52
}
51
53
class Field_blob;
52
54
 
53
55
extern uint64_t refresh_version;
158
160
  KeyInfo  *key_info; /**< data of keys in database */
159
161
  Field *next_number_field; /**< Set if next_number is activated. @TODO What the heck is the difference between this and the next member? */
160
162
  Field *found_next_number_field; /**< Points to the "next-number" field (autoincrement field) */
161
 
  Field_timestamp *timestamp_field; /**< Points to the auto-setting timestamp field, if any */
 
163
  field::Epoch *timestamp_field; /**< Points to the auto-setting timestamp field, if any */
162
164
 
163
165
  TableList *pos_in_table_list; /* Element referring to this table */
164
166
  Order *group;