~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Brian Aker
  • Date: 2011-01-04 23:23:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2055.
  • Revision ID: brian@tangent.org-20110104232325-qw5a0zs431zbtlwu
Rename of the Loooongggggg   error type over to simply drizzled::error_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
801
801
 
802
802
  if (result == false)
803
803
  {
804
 
    my_error(static_cast<drizzled::drizzled_error_code>(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);