~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Olaf van der Spek
  • Date: 2011-03-24 00:03:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110324000305-p9tdkxd15wjhagjb
Remove const_reference and reference from identifier::User

Show diffs side-by-side

added added

removed removed

Lines of Context:
429
429
 
430
430
class DropTableByIdentifier: public std::unary_function<EngineVector::value_type, bool>
431
431
{
432
 
  Session::reference session;
 
432
  Session& session;
433
433
  const identifier::Table& identifier;
434
434
  drizzled::error_t &error;
435
435
 
436
436
public:
437
437
 
438
 
  DropTableByIdentifier(Session::reference session_arg,
 
438
  DropTableByIdentifier(Session& session_arg,
439
439
                        const identifier::Table& identifier_arg,
440
440
                        drizzled::error_t &error_arg) :
441
441
    session(session_arg),
469
469
};
470
470
 
471
471
 
472
 
bool StorageEngine::dropTable(Session::reference session,
 
472
bool StorageEngine::dropTable(Session& session,
473
473
                              const identifier::Table& identifier,
474
474
                              drizzled::error_t &error)
475
475
{
506
506
  return true;
507
507
}
508
508
 
509
 
bool StorageEngine::dropTable(Session::reference session,
 
509
bool StorageEngine::dropTable(Session& session,
510
510
                              StorageEngine &engine,
511
511
                              const identifier::Table& identifier,
512
512
                              drizzled::error_t &error)