~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/table.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-18 13:52:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2443.
  • Revision ID: olafvdspek@gmail.com-20111018135219-vn5xhy8pvumotthk
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
}
185
185
 
186
186
Table::Table(const drizzled::Table &table) :
187
 
  identifier::Schema(table.getShare()->getSchemaName()),
 
187
  identifier::Schema(str_ref(table.getShare()->getSchemaName())),
188
188
  type(table.getShare()->getTableType()),
189
189
  table_name(table.getShare()->getTableName())
190
190
{