~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/diagnostics_area.h

  • Committer: Lee Bieber
  • Date: 2011-03-23 01:55:35 UTC
  • mfrom: (2245.1.2 build)
  • Revision ID: kalebral@gmail.com-20110323015535-2aatqy8tyiuqtc2z
Merge Olaf - more code refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include <drizzled/base.h>
23
23
#include <drizzled/error_t.h>
 
24
#include <drizzled/sql_error.h>
 
25
#include <drizzled/sql_list.h>
24
26
 
25
27
namespace drizzled {
26
28
 
78
80
  uint64_t last_insert_id() const;
79
81
  uint32_t total_warn_count() const;
80
82
 
 
83
  List<DRIZZLE_ERROR> m_warn_list;
 
84
 
81
85
  Diagnostics_area() { reset_diagnostics_area(); }
82
86
 
83
87
private:
127
131
  enum_diagnostics_status m_status;
128
132
  /**
129
133
    @todo: the following Session members belong here:
130
 
    - warn_list, warn_count,
 
134
    - warn_count,
131
135
  */
132
136
};
133
137