~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table_writer.cc

Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
  message::Table::TableOptions *tableopts;
204
204
 
205
205
  table->set_name("t1");
 
206
  table->set_catalog("LOCAL");
206
207
  table->set_type(message::Table::INTERNAL);
207
208
 
208
209
  tableopts= table->mutable_options();
263
264
 
264
265
  fstream output(vm["table-name"].as<string>().c_str(),
265
266
                 ios::out | ios::trunc | ios::binary);
266
 
  if (!table.SerializeToOstream(&output))
 
267
  if (not table.SerializeToOstream(&output))
267
268
  {
268
269
    cerr << "Failed to write schema." << endl;
269
270
    return -1;