~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/foreign_key.h

  • Committer: Patrick Crews
  • Date: 2010-08-19 23:23:15 UTC
  • mfrom: (1720.1.3 build)
  • Revision ID: gleebix@gmail.com-20100819232315-xcpbkwc5vz7kjhrp
Rollup patch - stewart's show create table patch + a couple of fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
namespace memory { class Root; }
38
38
 
 
39
void add_foreign_key_to_table_message(
 
40
    message::Table *table_message,
 
41
    const char* fkey_name,
 
42
    List<Key_part_spec> &cols,
 
43
    Table_ident *table,
 
44
    List<Key_part_spec> &ref_cols,
 
45
    message::Table::ForeignKeyConstraint::ForeignKeyOption delete_opt_arg,
 
46
    message::Table::ForeignKeyConstraint::ForeignKeyOption update_opt_arg,
 
47
    message::Table::ForeignKeyConstraint::ForeignKeyMatchOption match_opt_arg);
 
48
 
 
49
 
39
50
class Foreign_key: public Key 
40
51
{
41
52
public: