~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-27 04:12:14 UTC
  • mfrom: (1395.1.18 build)
  • Revision ID: brian@gaz-20100327041214-2pm5eay51312xjvq
Merge (fixes known issues in ALTER TABLE not resetting correctly DFE).

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
  {