~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_decimal.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

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
 
#ifndef MYSQL_CLIENT
 
119
#ifndef DRIZZLE_CLIENT
120
120
int decimal_operation_results(int result);
121
121
#else
122
122
inline int decimal_operation_results(int result)
123
123
{
124
124
  return result;
125
125
}
126
 
#endif /*MYSQL_CLIENT*/
 
126
#endif /*DRIZZLE_CLIENT*/
127
127
 
128
128
inline
129
129
void max_my_decimal(my_decimal *to, int precision, int frac)
250
250
}
251
251
 
252
252
 
253
 
#ifndef MYSQL_CLIENT
 
253
#ifndef DRIZZLE_CLIENT
254
254
int my_decimal2string(uint mask, const my_decimal *d, uint fixed_prec,
255
255
                      uint fixed_dec, char filler, String *str);
256
256
#endif
288
288
int str2my_decimal(uint mask, const char *from, uint length,
289
289
                   const CHARSET_INFO * charset, my_decimal *decimal_value);
290
290
 
291
 
#if defined(MYSQL_SERVER)
 
291
#if defined(DRIZZLE_SERVER)
292
292
inline
293
293
int string2my_decimal(uint mask, const String *str, my_decimal *d)
294
294
{
299
299
my_decimal *date2my_decimal(DRIZZLE_TIME *ltime, my_decimal *dec);
300
300
 
301
301
 
302
 
#endif /*defined(MYSQL_SERVER) */
 
302
#endif /*defined(DRIZZLE_SERVER) */
303
303
 
304
304
inline
305
305
int double2my_decimal(uint mask, double val, my_decimal *d)