~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/internal_dictionary.cc

mergeĀ lp:~stewart/drizzle/bug658673-DD-use-MAXIMUM_IDENTIFIER_LENGTH

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
InnodbInternalTables::InnodbInternalTables() :
63
63
  plugin::TableFunction("DATA_DICTIONARY", "INNODB_INTERNAL_TABLES")
64
64
{
65
 
  add_field("TABLE_NAME");
 
65
  add_field("TABLE_NAME", plugin::TableFunction::STRING, MAXIMUM_IDENTIFIER_LENGTH, false);
66
66
}
67
67
 
68
68
static void my_dict_print_callback(void *ptr, const char *table_name)