~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definitions.h

  • Committer: Brian Aker
  • Date: 2011-01-24 05:33:52 UTC
  • mto: This revision was merged to the branch mainline in revision 2113.
  • Revision ID: brian@tangent.org-20110124053352-h9682fpb56sd38t9
Cleanup test flags for debug options on server startup

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
#define DEFAULT_CONCURRENCY     10
192
192
#define FLUSH_TIME              0               /**< Don't flush tables */
193
193
 
194
 
/* Bits from testflag */
195
 
enum test_flag_bit
196
 
{
197
 
  TEST_PRINT_CACHED_TABLES= 1,
198
 
  TEST_NO_KEY_GROUP,
199
 
  TEST_MIT_THREAD,
200
 
  TEST_KEEP_TMP_TABLES,
201
 
  TEST_READCHECK, /**< Force use of readcheck */
202
 
  TEST_NO_EXTRA,
203
 
  TEST_CORE_ON_SIGNAL, /**< Give core if signal */
204
 
  TEST_NO_STACKTRACE,
205
 
  TEST_SIGINT, /**< Allow sigint on threads */
206
 
  TEST_SYNCHRONIZATION /**< get server to do sleep in some places */
207
 
};
208
 
 
209
194
/* Bits for different SQL modes modes (including ANSI mode) */
210
195
#define MODE_NO_ZERO_DATE               (2)
211
196
#define MODE_INVALID_DATES              (MODE_NO_ZERO_DATE*2)