~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/decimal.h

  • Committer: Brian Aker
  • Date: 2010-12-25 00:28:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225002849-g73mg6ihulajis0o
First pass in refactoring of the name of my_decimal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  virtual void print(String *str, enum_query_type query_type);
57
57
  Item_num *neg()
58
58
  {
59
 
    my_decimal_neg(&decimal_value);
 
59
    class_decimal_neg(&decimal_value);
60
60
    unsigned_flag= !decimal_value.sign();
61
61
    return this;
62
62
  }