~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Jay Pipes
  • Date: 2009-06-11 17:44:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1061.
  • Revision ID: jpipes@serialcoder-20090611174412-wk98egglux8h2cr2
More style cleanups in Session

Show diffs side-by-side

added added

removed removed

Lines of Context:
739
739
  killed_state volatile killed;
740
740
 
741
741
  bool some_tables_deleted;
742
 
  bool last_cuted_field;
743
742
  bool no_errors;
744
743
  bool password;
745
744
  /**
782
781
  /** Used by the sys_var class to store temporary values */
783
782
  union
784
783
  {
785
 
    bool   bool_value;
786
 
    uint32_t  uint32_t_value;
787
 
    long      long_value;
788
 
    ulong     ulong_value;
 
784
    bool bool_value;
 
785
    uint32_t uint32_t_value;
 
786
    int32_t int32_t_value;
789
787
    uint64_t uint64_t_value;
790
788
  } sys_var_tmp;
791
789
 
803
801
 
804
802
  /** Place to store various things */
805
803
  void *session_marker;
806
 
  /* Keep a copy of the previous table around in case we are just slamming on particular table */
 
804
  /** Keeps a copy of the previous table around in case we are just slamming on particular table */
807
805
  Table *cached_table;
808
806
 
809
807
  /**
1112
1110
  inline void fatal_error()
1113
1111
  {
1114
1112
    assert(main_da.is_error());
1115
 
    is_fatal_error= 1;
 
1113
    is_fatal_error= true;
1116
1114
  }
1117
1115
  /**
1118
1116
    true if there is an error in the error stack.