~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/my_decimal.h

  • Committer: Brian Aker
  • Date: 2008-07-11 00:33:12 UTC
  • mfrom: (51.1.83 remove-dbug)
  • Revision ID: brian@tangent.org-20080711003312-f4sf5n2z3obor1u8
Comming Jay's merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
  uint precision() const { return intg + frac; }
117
117
};
118
118
 
119
 
 
120
 
void print_decimal(const my_decimal *dec);
121
 
void print_decimal_buff(const my_decimal *dec, const uchar* ptr, int length);
122
 
const char *dbug_decimal_as_string(char *buff, const my_decimal *val);
123
 
 
124
119
#ifndef MYSQL_CLIENT
125
120
int decimal_operation_results(int result);
126
121
#else