~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Trond Norbye
  • Date: 2009-11-20 06:13:54 UTC
  • mto: (1223.1.6 push)
  • mto: This revision was merged to the branch mainline in revision 1225.
  • Revision ID: trond.norbye@sun.com-20091120061354-sboyueegi3vj1hb9
Bug #485658: Compile failure on 32 bit system due to mixing ulong, uint64_t and uint32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
   */
69
69
  DRIZZLE_LOCK *extra_lock;
70
70
 
71
 
  ulong version;
 
71
  uint64_t version;
72
72
  uint32_t current_tablenr;
73
73
 
74
74
  /*
82
82
  */
83
83
  Open_tables_state() : backups_available(false) { }
84
84
 
85
 
  Open_tables_state(ulong version_arg);
 
85
  Open_tables_state(uint64_t version_arg);
86
86
 
87
87
  void set_open_tables_state(Open_tables_state *state)
88
88
  {