~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema_reader.cc

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; version 2 of the License.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
19
 
 
20
1
#include <iostream>
21
2
#include <fstream>
22
3
#include <string>
23
4
#include <drizzled/message/schema.pb.h>
24
 
 
25
5
using namespace std;
26
 
using namespace drizzled;
27
 
 
28
6
 
29
7
/*
30
8
  Written from Google proto example
31
9
*/
32
10
 
33
 
static void printSchema(const message::Schema *schema)
 
11
void printSchema(const drizzled::message::Schema *schema)
34
12
{
35
13
  cout << "CREATE SCHEMA `" << schema->name() << "` ";
36
14
  if (schema->has_collation())
47
25
    return -1;
48
26
  }
49
27
 
50
 
  message::Schema schema;
 
28
  drizzled::message::Schema schema;
51
29
 
52
30
  {
53
31
    // Read the existing address book.