~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Patrick Crews
  • Date: 2010-08-17 17:42:29 UTC
  • mfrom: (1711.1.24 build)
  • Revision ID: gleebix@gmail.com-20100817174229-e28p5025ndgkkxif
Rollup patch - optimizer fixes, mutex removal, client cleanup, translations update

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
    the 'LOCK_TABLES' chapter of the MySQL manual.
64
64
    See also lock_tables() for details.
65
65
  */
66
 
  DRIZZLE_LOCK *lock;
 
66
  DrizzleLock *lock;
67
67
 
68
68
  /*
69
69
    CREATE-SELECT keeps an extra lock for the table being
70
70
    created. This field is used to keep the extra lock available for
71
71
    lower level routines, which would otherwise miss that lock.
72
72
   */
73
 
  DRIZZLE_LOCK *extra_lock;
 
73
  DrizzleLock *extra_lock;
74
74
 
75
75
  uint64_t version;
76
76
  uint32_t current_tablenr;