~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/transaction.proto

  • Committer: Vijay Samuel
  • Date: 2010-09-10 21:03:37 UTC
  • mto: (1757.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1758.
  • Revision ID: vijay@vijay-20100910210337-rf7c2ymawtqj6tkv
Merge added utf 8 tamil test case suite and test case for creating a database in tamil.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package drizzled.message;
2
2
option optimize_for = SPEED;
3
3
 
4
 
option java_package = "org.drizzle.messages";
5
 
option java_outer_classname = "TransactionMessage";
6
 
 
7
4
import "table.proto";
8
5
import "schema.proto";
9
 
import "event.proto";
10
6
 
11
7
/*
12
8
 * @file
300
296
{
301
297
  required string schema_name = 1; /* Name of the containing schema */
302
298
  required string table_name = 2; /* Name of the table */
303
 
  optional string catalog_name = 3;  /* Name of the catalog */
304
299
}
305
300
 
306
301
/*
481
476
message DropSchemaStatement
482
477
{
483
478
  required string schema_name = 1; /* Name of the schema to drop */
484
 
  optional string catalog_name = 2; /* Name of the catalog containing the schema */
485
479
}
486
480
 
487
481
/*
590
584
{
591
585
  required TransactionContext transaction_context = 1;
592
586
  repeated Statement statement = 2;
593
 
  optional Event event = 3;
594
587
}