~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-22 20:05:58 UTC
  • mto: This revision was merged to the branch mainline in revision 2347.
  • Revision ID: olafvdspek@gmail.com-20110622200558-oq3jb987di9yj70r
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
    session->getClient()->store((uint32_t) err->code);
236
236
    session->getClient()->store(err->msg, strlen(err->msg));
237
237
    if (session->getClient()->flush())
238
 
      return(true);
 
238
      return true;
239
239
  }
240
240
  session->my_eof();
241
 
  return(false);
 
241
  return false;
242
242
}
243
243
 
244
244
} /* namespace drizzled */