~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Brian Aker
  • Date: 2009-03-20 15:38:14 UTC
  • Revision ID: brian@tangent.org-20090320153814-lrr0qvs5x2ama1h2
Remove dead support for not having trans engine (just the remains of it)

Show diffs side-by-side

added added

removed removed

Lines of Context:
855
855
 
856
856
    server_capabilites= CLIENT_BASIC_FLAGS;
857
857
 
858
 
    if (opt_using_transactions)
859
 
      server_capabilites|= CLIENT_TRANSACTIONS;
860
858
#ifdef HAVE_COMPRESS
861
859
    server_capabilites|= CLIENT_COMPRESS;
862
860
#endif /* HAVE_COMPRESS */
936
934
    return false;
937
935
  }
938
936
 
939
 
  if ((client_capabilities & CLIENT_TRANSACTIONS) && opt_using_transactions)
940
 
    net.return_status= &server_status;
 
937
  net.return_status= &server_status;
941
938
 
942
939
  char *user= end;
943
940
  char *passwd= strchr(user, '\0')+1;