~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/foreign_key.cc

  • Committer: Nathan Williams
  • Date: 2009-06-05 22:51:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605225106-8xrsftpf50tdpumn
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
    0   Key valid
107
107
    1   Key invalid
108
108
*/
109
 
bool Foreign_key::validate(List<Create_field> &table_fields)
 
109
bool Foreign_key::validate(List<CreateField> &table_fields)
110
110
{
111
 
  Create_field  *sql_field;
 
111
  CreateField  *sql_field;
112
112
  Key_part_spec *column;
113
113
  List_iterator<Key_part_spec> cols(columns);
114
 
  List_iterator<Create_field> it(table_fields);
 
114
  List_iterator<CreateField> it(table_fields);
115
115
  while ((column= cols++))
116
116
  {
117
117
    it.rewind();