~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/diagnostics_area.cc

  • Committer: Brian Aker
  • Date: 2011-02-01 17:15:16 UTC
  • mto: (2132.1.4 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2134.
  • Revision ID: brian@tangent.org-20110201171516-h7rpqlmj6vyt6fc3
Additional error cleanup (passing error correctly to the client code).

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  can_overwrite_status= false;
35
35
  /** Don't take chances in production */
36
36
  m_message[0]= '\0';
37
 
  m_sql_errno= 0;
 
37
  m_sql_errno= EE_OK;
38
38
  m_server_status= 0;
39
39
  m_affected_rows= 0;
40
40
  m_found_rows= 0;
52
52
}
53
53
 
54
54
 
55
 
uint32_t Diagnostics_area::sql_errno() const
 
55
drizzled::error_t Diagnostics_area::sql_errno() const
56
56
{
57
57
  assert(m_status == DA_ERROR);
58
58
  return m_sql_errno;
139
139
/**
140
140
  Set ERROR status.
141
141
*/
142
 
void Diagnostics_area::set_error_status(uint32_t sql_errno_arg,
143
 
                                   const char *message_arg)
 
142
void Diagnostics_area::set_error_status(drizzled::error_t sql_errno_arg,
 
143
                                        const char *message_arg)
144
144
{
145
145
  /*
146
146
    Only allowed to report error if has not yet reported a success