~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/transaction.proto

  • Committer: Brian Aker
  • Date: 2010-08-18 19:37:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818193719-bxxzn1pi22styowd
created function that can be used to simply crash the server.

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
/*
547
541
    CREATE_TABLE = 8; /* A CREATE TABLE statement */
548
542
    ALTER_TABLE = 9; /* An ALTER TABLE statement */
549
543
    DROP_TABLE = 10; /* A DROP TABLE statement */
550
 
    ROLLBACK_STATEMENT = 11; /* ROLLBACK current statement */
551
544
    SET_VARIABLE = 98; /* A SET statement */
552
545
    RAW_SQL = 99; /* A raw SQL statement */
553
546
  }
591
584
{
592
585
  required TransactionContext transaction_context = 1;
593
586
  repeated Statement statement = 2;
594
 
  optional Event event = 3;
595
587
}