~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/foreign_keys.cc

  • Committer: Brian Aker
  • Date: 2010-10-21 00:18:50 UTC
  • mto: This revision was merged to the branch mainline in revision 1885.
  • Revision ID: brian@tangent.org-20101021001850-u5hv5x1up5n1gn3l
Cleanup display code around DD/IS

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
  return false;
96
96
}
97
97
 
98
 
void ForeignKeysTool::Generator::pushType(message::Table::Field::FieldType type)
99
 
{
100
 
  switch (type)
101
 
  {
102
 
    default:
103
 
      push("VARCHAR");
104
 
      break;
105
 
  }
106
 
}
107
 
 
108
98
std::string ForeignKeysTool::Generator::fkeyOption(message::Table::ForeignKeyConstraint::ForeignKeyOption option)
109
99
{
110
100
  std::string ret;