~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Eric Day
  • Date: 2009-08-06 19:31:30 UTC
  • mfrom: (971.3.71 eday-merge)
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090806193130-hetxd5bpqovrco68
Merged cleanup from my merge branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
591
591
 
592
592
  prepareForQueries();
593
593
 
594
 
  while (!client->haveError() && killed != KILL_CONNECTION)
 
594
  while (! client->haveError() && killed != KILL_CONNECTION)
595
595
  {
596
 
    if (!executeStatement())
 
596
    if (! executeStatement())
597
597
      break;
598
598
  }
599
599