~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/indexes.cc

  • Committer: Brian Aker
  • Date: 2010-03-02 17:59:26 UTC
  • mfrom: (1309.4.4 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1318.
  • Revision ID: brian@gaz-20100302175926-8t4bvdktaau3ejoa
Merge Randgen

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  add_field("TABLE_SCHEMA");
31
31
  add_field("TABLE_NAME");
32
32
  add_field("INDEX_NAME");
33
 
  add_field("IS_PRIMARY", plugin::TableFunction::BOOLEAN);
 
33
  add_field("IS_USED_IN_PRIMARY", plugin::TableFunction::BOOLEAN);
34
34
  add_field("IS_UNIQUE", plugin::TableFunction::BOOLEAN);
35
35
  add_field("IS_NULLABLE", plugin::TableFunction::BOOLEAN);
36
36
  add_field("KEY_LENGTH", plugin::TableFunction::NUMBER);
101
101
  /* INDEX_NAME */
102
102
  push(index.name());
103
103
 
104
 
  /* IS_PRIMARY */
 
104
  /* IS_USED_IN_PRIMARY */
105
105
  push(index.is_primary());
106
106
 
107
107
  /* IS_UNIQUE */