~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table_writer.cc

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    field->set_name(buffer);
126
126
    field->set_type(message::Table::Field::VARCHAR);
127
127
 
128
 
    field_constraints->set_is_notnull((x % 2));
 
128
    field_constraints->set_is_nullable((x % 2));
129
129
 
130
130
    string_field_options->set_length(rand() % 100);
131
131
 
166
166
    field->set_type(message::Table::Field::DECIMAL);
167
167
 
168
168
    field_constraints= field->mutable_constraints();
169
 
    field_constraints->set_is_notnull(false);
 
169
    field_constraints->set_is_nullable(true);
170
170
 
171
171
    numeric_field_options= field->mutable_numeric_options();
172
172
    numeric_field_options->set_precision(8);
203
203
  message::Table::TableOptions *tableopts;
204
204
 
205
205
  table->set_name("t1");
206
 
  table->set_catalog("LOCAL");
207
206
  table->set_type(message::Table::INTERNAL);
208
207
 
209
208
  tableopts= table->mutable_options();
264
263
 
265
264
  fstream output(vm["table-name"].as<string>().c_str(),
266
265
                 ios::out | ios::trunc | ios::binary);
267
 
  if (not table.SerializeToOstream(&output))
 
266
  if (!table.SerializeToOstream(&output))
268
267
  {
269
268
    cerr << "Failed to write schema." << endl;
270
269
    return -1;