~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-10-07 15:15:28 UTC
  • mfrom: (481.1.24 codestyle)
  • Revision ID: brian@tangent.org-20081007151528-xc1w8m90lqb37j4r
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#define IF_PURIFY(A,B) (B)
59
59
#endif
60
60
 
61
 
#if SIZEOF_CHARP == 4
62
 
#define MAX_MEM_TABLE_SIZE ~(uint32_t) 0
63
 
#else
64
 
#define MAX_MEM_TABLE_SIZE ~(uint64_t) 0
65
 
#endif
 
61
#define MAX_MEM_TABLE_SIZE SIZE_MAX
66
62
 
67
63
/* We have HAVE_purify below as this speeds up the shutdown of MySQL */
68
64