~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

  • Committer: Monty Taylor
  • Date: 2011-03-11 16:44:43 UTC
  • mfrom: (2228.2.1 trunk-bug-732962)
  • mto: This revision was merged to the branch mainline in revision 2230.
  • Revision ID: mordred@inaugust.com-20110311164443-4ruh4onx53zyyl3x
Merge Andrew: drizzledump bugfix

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
    DrizzleDumpTable(std::string &table, DrizzleDumpConnection* connection) :
134
134
      dcon(connection),
135
135
      tableName(table),
 
136
      replicate(true),
136
137
      database(NULL)
137
138
    { }
138
139
 
155
156
    std::string engineName;
156
157
    std::string collate;
157
158
    std::string comment;
 
159
    bool replicate;
158
160
 
159
161
    // Currently MySQL only, hard to do in Drizzle
160
162
    uint64_t autoIncrement;