~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/null.h

  • Committer: Mark Atwood
  • Date: 2011-06-03 17:57:46 UTC
  • mfrom: (2313.3.7 void)
  • Revision ID: me@mark.atwood.name-20110603175746-5qgjopd4l9wvhfk4
mergeĀ lp:~olafvdspek/drizzle/void3

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <drizzled/charset.h>
23
23
#include <drizzled/item/basic_constant.h>
24
24
 
25
 
namespace drizzled
26
 
{
 
25
namespace drizzled {
27
26
 
28
27
class Item_null :public Item_basic_constant
29
28
{
45
44
  type::Decimal *val_decimal(type::Decimal *);
46
45
  int save_in_field(Field *field, bool no_conversions);
47
46
  int save_safe_in_field(Field *field);
48
 
  bool send(plugin::Client *client, String *str);
 
47
  void send(plugin::Client *client, String *str);
49
48
  enum Item_result result_type () const { return STRING_RESULT; }
50
49
  enum_field_types field_type() const   { return DRIZZLE_TYPE_NULL; }
51
50
  bool basic_const_item() const { return 1; }