~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2011-01-26 06:48:39 UTC
  • mfrom: (2114.5.2 timestamp)
  • Revision ID: brian@tangent.org-20110126064839-nfcmqoqu08x22pdo
Merge in time tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1014
1014
  bool substitute_null_with_insert_id;
1015
1015
  bool cleanup_done;
1016
1016
 
 
1017
private:
1017
1018
  bool abort_on_warning;
 
1019
 
 
1020
public:
1018
1021
  bool got_warning; /**< Set on call to push_warning() */
1019
1022
  bool no_warnings_for_error; /**< no warnings on call to my_error() */
1020
1023
  /** set during loop of derived table processing */
1439
1442
  }
1440
1443
  void send_kill_message() const;
1441
1444
  /* return true if we will abort query if we make a warning now */
1442
 
  inline bool really_abort_on_warning()
1443
 
  {
1444
 
    return (abort_on_warning);
 
1445
  inline bool abortOnWarning()
 
1446
  {
 
1447
    return abort_on_warning;
 
1448
  }
 
1449
 
 
1450
  inline void setAbortOnWarning(bool arg)
 
1451
  {
 
1452
    abort_on_warning= arg;
1445
1453
  }
1446
1454
 
1447
1455
  void setAbort(bool arg);