~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Lee Bieber
  • Date: 2011-01-05 01:41:02 UTC
  • mfrom: (2054.1.2 clean)
  • Revision ID: kalebral@gmail.com-20110105014102-e1sfrth1cesuwyf7
Merge Brian - Rename of the Loooongggggg   error type over to simply drizzled::error_t
Merge Brian - Cleanup of error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
801
801
 
802
802
  if (result == false)
803
803
  {
804
 
    my_error(killed_errno(), MYF(0));
 
804
    my_error(static_cast<drizzled::error_t>(killed_errno()), MYF(0));
805
805
  }
806
806
  else if ((result == true) && do_release)
807
807
  {
1655
1655
  }
1656
1656
}
1657
1657
 
1658
 
void Session::disconnect(enum drizzled_error_code errcode)
 
1658
void Session::disconnect(enum error_t errcode)
1659
1659
{
1660
1660
  /* Allow any plugins to cleanup their session variables */
1661
1661
  plugin_sessionvar_cleanup(this);