~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Brian Aker
  • Date: 2011-01-16 19:48:25 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110116194825-vf4j6eowqyg5p214
Merge in schema identifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
    let's fetch the database default character set and
88
88
    apply it to the table.
89
89
  */
90
 
  SchemaIdentifier identifier(db);
 
90
  identifier::Schema identifier(db);
91
91
  if (create_info->default_table_charset == NULL)
92
92
    create_info->default_table_charset= plugin::StorageEngine::getSchemaCollation(identifier);
93
93
}