~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Brian Aker
  • Date: 2009-05-11 17:50:22 UTC
  • Revision ID: brian@gaz-20090511175022-y35q9ky6uh9ldcjt
Replacing Sun employee copyright headers (aka... anything done by a Sun
employee is copyright by Sun).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package drizzle;
 
1
package drizzled.message;
 
2
option optimize_for = SPEED;
2
3
 
3
4
message Schema {
4
5
  required string name = 1;
5
 
  optional string characterset = 2;
6
 
  optional string collation = 3;
 
6
  optional string collation = 2;
7
7
}