~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2010-08-08 04:21:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1697.
  • Revision ID: brian@gaz-20100808042129-x4we3721ql8lfsje
Update for HEAP to convert its lock to boost.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
  uint32_t used_fields;
58
58
  plugin::StorageEngine *db_type;
59
59
  bool table_existed;                   /* 1 in create if table existed */
 
60
 
 
61
  st_ha_create_information() :
 
62
    table_charset(0),
 
63
    default_table_charset(0),
 
64
    alias(0),
 
65
    auto_increment_value(0),
 
66
    table_options(0),
 
67
    used_fields(0),
 
68
    db_type(0),
 
69
    table_existed(0)
 
70
  { }
60
71
} HA_CREATE_INFO;
61
72
 
62
73
typedef struct st_ha_alter_information