~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/schema_engine.cc

  • Committer: Lee Bieber
  • Date: 2011-01-25 02:10:42 UTC
  • mfrom: (2109.1.4 build)
  • Revision ID: kalebral@gmail.com-20110125021042-ocqa0v509ae7fmtz
Need to add a "drop table a" in execute.wait test
Add execute test suite to regular test run
Merge Lee - fix second part of 705699, check for both client and server before building and testing rabbitmq plugin
Merge Shrews - Changes TransactionServices methods to use references to Session objects instead of pointers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
      my_error(ER_TABLE_DROP, *it);
225
225
      return false;
226
226
    }
227
 
    transaction_services.dropTable(&session, *it, true);
 
227
    transaction_services.dropTable(session, *it, true);
228
228
    deleted++;
229
229
  }
230
230
 
284
284
    {
285
285
      /* We've already verified that the schema does exist, so safe to log it */
286
286
      TransactionServices &transaction_services= TransactionServices::singleton();
287
 
      transaction_services.dropSchema(&session, identifier);
 
287
      transaction_services.dropSchema(session, identifier);
288
288
    }
289
289
  } while (0);
290
290