~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/protocol.cc

  • Committer: Brian Aker
  • Date: 2009-01-28 19:37:25 UTC
  • mfrom: (779.3.11 devel)
  • Revision ID: brian@tangent.org-20090128193725-pz7g7dnp2dx0863e
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
448
448
  convert= &session->convert_buffer;
449
449
}
450
450
 
451
 
/**
452
 
  Finish the result set with EOF packet, as is expected by the client,
453
 
  if there is an error evaluating the next row and a continue handler
454
 
  for the error.
455
 
*/
456
 
 
457
 
void Protocol::end_partial_result_set(Session *session)
458
 
{
459
 
  net_send_eof(session, session->server_status, 0 /* no warnings, we're inside SP */);
460
 
}
461
 
 
462
451
 
463
452
bool Protocol::flush()
464
453
{