~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/null.h

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/field/str.h>
25
25
 
26
 
namespace drizzled
27
 
{
28
 
 
29
26
/*
30
27
 * Everything saved in this will disappear. It will always return NULL
31
28
 */
70
67
    null[0]= 1;
71
68
    return 0;
72
69
  }
73
 
  int store_decimal(const type::Decimal *)
 
70
  int store_decimal(const my_decimal *)
74
71
  {
75
72
    null[0]= 1;
76
73
    return 0;
87
84
  {
88
85
    return 0;
89
86
  }
90
 
  type::Decimal *val_decimal(type::Decimal *)
 
87
  my_decimal *val_decimal(my_decimal *)
91
88
  {
92
89
    return 0;
93
90
  }
117
114
  }
118
115
};
119
116
 
120
 
} /* namespace drizzled */
121
 
 
122
117
#endif /* DRIZZLED_FIELD_NULL_H */