~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/null.h

  • Committer: Brian Aker
  • Date: 2011-02-20 21:00:32 UTC
  • mfrom: (2181.2.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110220210032-fc9g8qugt0n1yjr6
Brian Aker 2011-02-20 Merge in additional header bits for strerror_r
Brian Aker 2011-02-20 Create CONST on additional Field methods.
Brian Aker 2011-02-19 Further commit const on field.
Brian Aker 2011-02-18 This fixes DEBUG based compiles.
Brian Aker 2011-02-18 Protect all of the val_* methods from modification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
  {
80
80
    return 0;
81
81
  }
82
 
  double val_real(void)
 
82
  double val_real(void) const
83
83
  {
84
84
    return 0.0;
85
85
  }
86
 
  int64_t val_int(void)
87
 
  {
88
 
    return 0;
89
 
  }
90
 
  type::Decimal *val_decimal(type::Decimal *)
91
 
  {
92
 
    return 0;
93
 
  }
94
 
  String *val_str(String *, String *value2)
 
86
  int64_t val_int(void) const
 
87
  {
 
88
    return 0;
 
89
  }
 
90
  type::Decimal *val_decimal(type::Decimal *) const
 
91
  {
 
92
    return 0;
 
93
  }
 
94
  String *val_str(String *, String *value2) const
95
95
  {
96
96
    value2->length(0);
97
97
    return value2;