~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/tables.cc

First pass through making columns work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
  const CHARSET_INFO * const scs= system_charset_info;
92
92
  Field **field= fields;
93
93
 
 
94
  /* TABLE_CATALOG */
 
95
  (*field)->store("default", sizeof("default"), scs);
 
96
  field++;
 
97
 
94
98
  /* TABLE_SCHEMA */
95
99
  (*field)->store(schema_name().c_str(), schema_name().length(), scs);
96
100
  field++;