~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/null.cc

  • Committer: Eric Day
  • Date: 2009-08-06 07:14:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090806071437-c3baqgtvsdxp1l1a
Renamed Protocol to Client, cleaned up some unnecessary methods along the way.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include <drizzled/server_includes.h>
21
21
#include CSTDINT_H
22
 
#include <drizzled/plugin/protocol.h>
 
22
#include <drizzled/plugin/client.h>
23
23
#include <drizzled/item/null.h>
24
24
#include <drizzled/lex_string.h>
25
25
 
108
108
  Pack data in buffer for sending.
109
109
*/
110
110
 
111
 
bool Item_null::send(plugin::Protocol *protocol,
112
 
                     String *)
 
111
bool Item_null::send(plugin::Client *client, String *)
113
112
{
114
 
  return protocol->store();
 
113
  return client->store();
115
114
}
116
 
 
117
 
 
118
 
 
119