~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema_writer.cc

  • Committer: lbieber
  • Date: 2010-10-06 02:01:43 UTC
  • mfrom: (1814.1.1 build)
  • Revision ID: lbieber@orisndriz08-20101006020143-gho0wsmd346m02f9
Merge Brian - fix bug 654905 - DATA_DICTIONARY.TABLE.TYPE not returning BASE or VIEW (it reports the port type).

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);
51
53
 
52
54
  fstream output(file_name.c_str(), ios::out | ios::trunc | ios::binary);
53
55