~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table_writer.cc

  • Committer: Brian Aker
  • Date: 2010-09-22 22:25:29 UTC
  • mto: (1791.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1792.
  • Revision ID: brian@tangent.org-20100922222529-geo4wggmu5ntqa5k
Current boost work (more conversion).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
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();
233
232
  po::positional_options_description p;
234
233
  p.add("table-name", 1);
235
234
 
236
 
  // Disable allow_guessing
237
 
  int style = po::command_line_style::default_style & ~po::command_line_style::allow_guessing;
238
 
 
239
 
  po::store(po::command_line_parser(argc, argv).options(desc).style(style).
 
235
  po::store(po::command_line_parser(argc, argv).options(desc).
240
236
            positional(p).run(), vm);
241
237
 
242
238
  if (not vm.count("table-name"))
264
260
 
265
261
  fstream output(vm["table-name"].as<string>().c_str(),
266
262
                 ios::out | ios::trunc | ios::binary);
267
 
  if (not table.SerializeToOstream(&output))
 
263
  if (!table.SerializeToOstream(&output))
268
264
  {
269
265
    cerr << "Failed to write schema." << endl;
270
266
    return -1;