~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/my_decimal.h

Standardized TRUE/FALSE, removed/replaced DBUG symbols, and removed custom dbug funcs for decimal (these should go away anyway...)

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