~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_decimal.cc

  • 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:
18
18
#include <drizzled/drizzled_error_messages.h>
19
19
 
20
20
 
21
 
#ifndef MYSQL_CLIENT
 
21
#ifndef DRIZZLE_CLIENT
22
22
/**
23
23
  report result of decimal operation.
24
24
 
241
241
#define DIG_PER_DEC1 9
242
242
#define ROUND_UP(X)  (((X)+DIG_PER_DEC1-1)/DIG_PER_DEC1)
243
243
 
244
 
#endif /*MYSQL_CLIENT*/
 
244
#endif /*DRIZZLE_CLIENT*/