~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/character_set.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-11-25 16:55:42 UTC
  • mto: (1228.4.1 push)
  • mto: This revision was merged to the branch mainline in revision 1234.
  • Revision ID: osullivan.padraig@gmail.com-20091125165542-8vo6u1e7jgdjs2j5
Removed the redundant open table method parameter to columns associated with an I_S table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
                                            DRIZZLE_TYPE_VARCHAR,
75
75
                                            0,
76
76
                                            0,
77
 
                                            "Charset",
78
 
                                            SKIP_OPEN_TABLE));
 
77
                                            "Charset"));
79
78
 
80
79
  columns->push_back(new plugin::ColumnInfo("DEFAULT_COLLATE_NAME",
81
80
                                            64,
82
81
                                            DRIZZLE_TYPE_VARCHAR,
83
82
                                            0,
84
83
                                            0,
85
 
                                            "Default collation",
86
 
                                            SKIP_OPEN_TABLE));
 
84
                                            "Default collation"));
87
85
 
88
86
  columns->push_back(new plugin::ColumnInfo("DESCRIPTION",
89
87
                                            60,
90
88
                                            DRIZZLE_TYPE_VARCHAR,
91
89
                                            0,
92
90
                                            0,
93
 
                                            "Description",
94
 
                                            SKIP_OPEN_TABLE));
 
91
                                            "Description"));
95
92
 
96
93
  columns->push_back(new plugin::ColumnInfo("MAXLEN",
97
94
                                            3,
98
95
                                            DRIZZLE_TYPE_LONGLONG,
99
96
                                            0,
100
97
                                            0,
101
 
                                            "Maxlen",
102
 
                                            SKIP_OPEN_TABLE));
 
98
                                            "Maxlen"));
103
99
 
104
100
  return columns;
105
101
}