~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref.cc

  • Committer: Mark Atwood
  • Date: 2011-06-03 17:57:03 UTC
  • mfrom: (2313.3.6 void)
  • Revision ID: me@mark.atwood.name-20110603175703-idsui337bghio245
mergeĀ lp:~olafvdspek/drizzle/void2

Show diffs side-by-side

added added

removed removed

Lines of Context:
389
389
bool Item_ref::send(plugin::Client *client, String *tmp)
390
390
{
391
391
  if (result_field)
392
 
    return client->store(result_field);
 
392
  {
 
393
    client->store(result_field);
 
394
    return false; // return void
 
395
  }
393
396
  return (*ref)->send(client, tmp);
394
397
}
395
398