~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema_writer.cc

  • Committer: lbieber
  • Date: 2010-10-02 14:36:07 UTC
  • mfrom: (1799.7.7 drizzle-bug-649844)
  • mto: This revision was merged to the branch mainline in revision 1809.
  • Revision ID: lbieber@orisndriz08-20101002143607-fffgvc6l4gw9drmm
Merge Andrew - fix bug 649844 - Clean up and fix some drizzledump options along with some documentation fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  schema.set_creation_timestamp(time(NULL));
49
49
  schema.set_update_timestamp(time(NULL));
50
50
  schema.set_collation("utf8_general_ci");
51
 
  schema.set_uuid("schema_writer");
52
 
  schema.set_version(1);
53
51
 
54
52
  fstream output(file_name.c_str(), ios::out | ios::trunc | ios::binary);
55
53