~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item.h

Removed conditional definition of dbug_print() to get build working

Show diffs side-by-side

added added

removed removed

Lines of Context:
1173
1173
  virtual Item *update_value_transformer(uchar *select_arg);
1174
1174
  virtual void print(String *str, enum_query_type query_type);
1175
1175
 
1176
 
#ifndef DBUG_OFF
1177
 
  void dbug_print()
1178
 
  {
1179
 
  }
1180
 
#endif
 
1176
  void dbug_print() {}
1181
1177
 
1182
1178
  friend class Item_default_value;
1183
1179
  friend class Item_insert_value;
2203
2199
  uint length;
2204
2200
 
2205
2201
public:
2206
 
#ifndef DBUG_OFF
2207
2202
  void dbug_print()
2208
2203
  {
2209
2204
    uchar *org_ptr;
2216
2211
    field->ptr= org_ptr;
2217
2212
    fprintf(DBUG_FILE, "\n");
2218
2213
  }
2219
 
#endif
2220
2214
  Cached_item_field(Field *arg_field) : field(arg_field)
2221
2215
  {
2222
2216
    field= arg_field;