~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.cc

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
#include <drizzled/plugin/client.h>
53
53
 
54
54
using namespace std;
55
 
 
56
 
namespace drizzled
57
 
{
 
55
using namespace drizzled;
58
56
 
59
57
/*
60
58
  Store a new message in an error object
83
81
 
84
82
void drizzle_reset_errors(Session *session, bool force)
85
83
{
86
 
  if (session->getQueryId() != session->getWarningQueryId() || force)
 
84
  if (session->query_id != session->warn_id || force)
87
85
  {
88
 
    session->setWarningQueryId(session->getQueryId());
 
86
    session->warn_id= session->query_id;
89
87
    free_root(&session->warn_root,MYF(0));
90
88
    memset(session->warn_count, 0, sizeof(session->warn_count));
91
89
    if (force)
120
118
      !(session->options & OPTION_SQL_NOTES))
121
119
    return(0);
122
120
 
123
 
  if (session->getQueryId() != session->getWarningQueryId())
 
121
  if (session->query_id != session->warn_id)
124
122
    drizzle_reset_errors(session, 0);
125
123
  session->got_warning= 1;
126
124
 
243
241
  session->my_eof();
244
242
  return(false);
245
243
}
246
 
 
247
 
} /* namespace drizzled */