~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global.h

  • Committer: Brian Aker
  • Date: 2008-08-10 17:36:50 UTC
  • Revision ID: brian@tangent.org-20080810173650-zuho0mi0zg9s66hi
Final ulong cleanup in clients

Show diffs side-by-side

added added

removed removed

Lines of Context:
963
963
using namespace std;
964
964
#else
965
965
#define max(a, b)       ((a) > (b) ? (a) : (b))
 
966
#endif
966
967
#define min(a, b)       ((a) < (b) ? (a) : (b))
967
 
#endif
968
968
 
969
969
/* Length of decimal number represented by INT32. */
970
970
#define MY_INT32_NUM_DECIMAL_DIGITS 11