~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-11-11 23:42:09 UTC
  • mto: (1932.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1930.
  • Revision ID: brian@tangent.org-20101111234209-u3j07lya1dhcon45
Adding in concurrent execute support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
621
621
  Field *dup_field;
622
622
  sigset_t signals;
623
623
 
 
624
  // As of right now we do not allow a concurrent execute to launch itself
 
625
private:
 
626
  bool concurrent_execute_allowed;
 
627
public:
 
628
 
 
629
  void setConcurrentExecute(bool arg)
 
630
  {
 
631
    concurrent_execute_allowed= arg;
 
632
  }
 
633
 
 
634
  bool isConcurrentExecuteAllowed() const
 
635
  {
 
636
    return concurrent_execute_allowed;
 
637
  }
 
638
 
624
639
  /* Tells if LAST_INSERT_ID(#) was called for the current statement */
625
640
  bool arg_of_last_insert_id_function;
 
641
 
626
642
  /*
627
643
    ALL OVER THIS FILE, "insert_id" means "*automatically generated* value for
628
644
    insertion into an auto_increment column".