~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Lee Bieber
  • Date: 2011-02-10 21:02:41 UTC
  • mfrom: (2154.1.3 build)
  • Revision ID: kalebral@gmail.com-20110210210241-jouae2uw2pwv6bac
Merge Patrick - 715885: dbqp needs to return non-zero if tests fail
Merge Stewart - 715539: (get|set)_session_proc_info() still exists
Merge Stewart - 715575: misc session_foo() functions exist - should be methods in Session
Merge Stewart - 712843: SAVEPOINT after rollback due to deadlock with autocommit=off in transaction will call startTransaction with an existing transaction where one shouldn't exist

Show diffs side-by-side

added added

removed removed

Lines of Context:
488
488
 
489
489
  assert(session->transaction.stmt.hasModifiedNonTransData() == false);
490
490
 
 
491
  if (! (session->server_status & SERVER_STATUS_AUTOCOMMIT)
 
492
      && ! session->inTransaction()
 
493
      && lex->statement->isTransactional())
 
494
  {
 
495
    if (session->startTransaction() == false)
 
496
    {
 
497
      my_error(drizzled::ER_UNKNOWN_ERROR, MYF(0));
 
498
      return true;
 
499
    }
 
500
  }
 
501
 
491
502
  /* now we are ready to execute the statement */
492
503
  res= lex->statement->execute();
493
504
  session->set_proc_info("query end");
516
527
      param->select_limit=
517
528
        new Item_int((uint64_t) session->variables.select_limit);
518
529
  }
 
530
 
 
531
  if (all_tables
 
532
      && ! (session->server_status & SERVER_STATUS_AUTOCOMMIT)
 
533
      && ! session->inTransaction()
 
534
      && ! lex->statement->isShow())
 
535
  {
 
536
    if (session->startTransaction() == false)
 
537
    {
 
538
      my_error(drizzled::ER_UNKNOWN_ERROR, MYF(0));
 
539
      return true;
 
540
    }
 
541
  }
 
542
 
519
543
  if (not (res= session->openTablesLock(all_tables)))
520
544
  {
521
545
    if (lex->describe)