~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/drop_table.cc

  • Committer: Brian Aker
  • Date: 2011-01-18 00:26:36 UTC
  • mfrom: (2085.2.3 alter-table)
  • Revision ID: brian@tangent.org-20110118002636-mfyvnv58auvqr5gc
First pass on fix for UTF-8, this checks all of our schema names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
  }
101
101
 
102
102
  /* DDL and binlog write order protected by table::Cache::singleton().mutex() */
103
 
  bool res= rm_table(session, first_table, drop_if_exists, drop_temporary);
104
103
 
105
 
  return res;
 
104
  return rm_table(session, first_table, drop_if_exists, drop_temporary);
106
105
}
107
106
 
108
107
} /* namespace drizzled */