~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.cc

  • Committer: Brian Aker
  • Date: 2009-09-22 07:35:28 UTC
  • mfrom: (971.6.10 eday-dev)
  • Revision ID: brian@gaz-20090922073528-xgm634aomuflqxl3
MergeĀ Eric

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <drizzled/item/cmpfunc.h>
28
28
#include <drizzled/item/field.h>
29
29
#include <drizzled/item/outer_ref.h>
 
30
#include <drizzled/plugin/client.h>
30
31
 
31
32
using namespace drizzled;
32
33
 
1182
1183
}
1183
1184
 
1184
1185
 
1185
 
bool Item_field::send(plugin::Protocol *protocol, String *)
 
1186
bool Item_field::send(plugin::Client *client, String *)
1186
1187
{
1187
 
  return protocol->store(result_field);
 
1188
  return client->store(result_field);
1188
1189
}
1189
1190
 
1190
1191