~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Monty Taylor
  • Date: 2010-01-02 23:27:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1261.
  • Revision ID: mordred@inaugust.com-20100102232700-9rjekbaynol3o9mi
Replaced operator overloads with methods since we can't actually usefully follow the proper semantics for the operators.

Show diffs side-by-side

added added

removed removed

Lines of Context:
605
605
  scheduler= plugin::Scheduler::getScheduler();
606
606
  assert(scheduler);
607
607
 
608
 
  ++connection_count;
 
608
  connection_count.increment();
609
609
 
610
610
  if (connection_count > max_used_connections)
611
611
    max_used_connections= connection_count;