~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Monty Taylor
  • Date: 2009-07-11 08:59:58 UTC
  • mto: (1093.1.12 captain)
  • mto: This revision was merged to the branch mainline in revision 1097.
  • Revision ID: mordred@inaugust.com-20090711085958-182jngk7bbe020q4
Removed dangerous asserts... mainly to upset Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2047
2047
bool Session::open_normal_and_derived_tables(TableList *tables, uint32_t flags)
2048
2048
{
2049
2049
  uint32_t counter;
2050
 
  assert(!(fill_derived_tables()));
 
2050
  bool ret= fill_derived_tables();
 
2051
  assert(ret == false);
2051
2052
  if (open_tables_from_list(&tables, &counter, flags) ||
2052
2053
      mysql_handle_derived(lex, &mysql_derived_prepare))
2053
2054
    return true; /* purecov: inspected */