~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.cc

  • Committer: Brian Aker
  • Date: 2010-03-25 19:25:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1411.
  • Revision ID: brian@gaz-20100325192504-stbk05bhlac8zg3v
Removed the internal table type in favor of the protobuf one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
  TableIdentifier new_table_identifier(create_table->db,
97
97
                                       create_table->table_name,
98
 
                                       create_table_message.type() != message::Table::TEMPORARY ? STANDARD_TABLE : TEMP_TABLE);
 
98
                                       create_table_message.type());
99
99
 
100
100
  if (create_table_precheck(new_table_identifier))
101
101
  {