~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/foreign_key.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-18 11:01:40 UTC
  • mto: This revision was merged to the branch mainline in revision 2443.
  • Revision ID: olafvdspek@gmail.com-20111018110140-5kiyo83d27p56orh
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    message::Table::ForeignKeyConstraint::ForeignKeyMatchOption match_opt_arg);
41
41
 
42
42
 
43
 
class Foreign_key: public Key 
 
43
class Foreign_key : public Key 
44
44
{
45
45
public:
46
46
  Table_ident *ref_table;
50
50
  message::Table::ForeignKeyConstraint::ForeignKeyOption update_opt;
51
51
  message::Table::ForeignKeyConstraint::ForeignKeyMatchOption match_opt;
52
52
 
53
 
  Foreign_key(const lex_string_t &name_arg,
 
53
  Foreign_key(lex_string_t name_arg,
54
54
              List<Key_part_spec> &cols,
55
55
              Table_ident *table,
56
56
              List<Key_part_spec> &ref_cols,
78
78
};
79
79
 
80
80
} /* namespace drizzled */
81