~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/schema_reader.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include "schema.pb.h"
5
5
using namespace std;
6
6
 
7
 
/* 
 
7
/*
8
8
  Written from Google proto example
9
9
*/
10
10
 
11
 
void printSchema(const drizzle::Schema *schema) 
 
11
void printSchema(const drizzle::Schema *schema)
12
12
{
13
13
  cout << "CREATE SCHEMA `" << schema->name() << "` ";
14
14
  if (schema->has_collation())
18
18
  cout << ";" << endl;
19
19
}
20
20
 
21
 
int main(int argc, char* argv[]) 
 
21
int main(int argc, char* argv[])
22
22
{
23
23
  GOOGLE_PROTOBUF_VERIFY_VERSION;
24
24
 
32
32
  {
33
33
    // Read the existing address book.
34
34
    fstream input(argv[1], ios::in | ios::binary);
35
 
    if (!schema.ParseFromIstream(&input)) 
 
35
    if (!schema.ParseFromIstream(&input))
36
36
    {
37
37
      cerr << "Failed to parse schema." << endl;
38
38
      return -1;