~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item_func.h

  • Committer: Patrick Galbraith
  • Date: 2008-07-28 01:47:41 UTC
  • mto: (212.1.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 217.
  • Revision ID: patg@ishvara-20080728014741-yoasv5trt1ef9rha
Renamed FIELD_TYPE to DRIZZLE_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
378
378
  int64_t val_int();
379
379
  my_decimal *val_decimal(my_decimal*);
380
380
  enum Item_result result_type () const { return DECIMAL_RESULT; }
381
 
  enum_field_types field_type() const { return FIELD_TYPE_NEWDECIMAL; }
 
381
  enum_field_types field_type() const { return DRIZZLE_TYPE_NEWDECIMAL; }
382
382
  void fix_length_and_dec() {};
383
383
  const char *func_name() const { return "decimal_typecast"; }
384
384
  virtual void print(String *str, enum_query_type query_type);