~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_global.h

Replaced regex lib with pcre. Reworked mysqltest to use it. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1171
1171
/* Length of decimal number represented by INT64. */
1172
1172
#define MY_INT64_NUM_DECIMAL_DIGITS 21
1173
1173
 
 
1174
#ifdef _cplusplus
 
1175
#include <string>
 
1176
#endif
 
1177
 
1174
1178
/* Define some useful general macros (should be done after all headers). */
1175
1179
#if !defined(max)
1176
1180
#define max(a, b)       ((a) > (b) ? (a) : (b))