~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definitions.h

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:15:23 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114051523-n57f99sr3qzs9ijw
rearrange explanation of absence of old weird types in numeric data types doc to be after explanation of what we do have. I think it reads better that way

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
#define LANGUAGE        "english/"
44
44
#define TEMP_PREFIX     "MY"
 
45
#define LOG_PREFIX      "ML"
45
46
 
46
47
#define ER(X) ::drizzled::error_message((X))
47
48
 
49
50
#define STRERROR_MAX 256
50
51
 
51
52
/* extra 4+4 bytes for slave tmp tables */
 
53
#define MAX_DBKEY_LENGTH (NAME_LEN*2+1+1+4+4)
 
54
#define MAX_ALIAS_NAME 256
52
55
#define MAX_FIELD_NAME 34                       /* Max colum name length +2 */
53
56
#define MAX_SYS_VAR_LENGTH 32
54
57
#define MAX_INDEXES 64
55
 
const uint32_t MAX_KEY = MAX_INDEXES;                     /* Max used keys */
56
 
const uint32_t MAX_REF_PARTS = 16;                      /* Max parts used as ref */
57
 
const uint32_t MAX_KEY_LENGTH = 4096;                    // max possible key
58
 
const uint32_t MAX_KEY_LENGTH_DECIMAL_WIDTH = 4; // strlen("4096")
59
 
 
 
58
#define MAX_KEY MAX_INDEXES                     /* Max used keys */
 
59
#define MAX_REF_PARTS 16                        /* Max parts used as ref */
 
60
#define MAX_KEY_LENGTH 4096                     /* max possible key */
 
61
#define MAX_KEY_LENGTH_DECIMAL_WIDTH 4          /* strlen("4096") */
60
62
#if SIZEOF_OFF_T > 4
61
63
#define MAX_REFLENGTH 8                         /* Max length for record ref */
62
64
#else
63
65
#define MAX_REFLENGTH 4                         /* Max length for record ref */
64
66
#endif
 
67
#define MAX_HOSTNAME  61                        /* len+1 in mysql.user */
65
68
 
66
69
#define MAX_MBWIDTH             4               /* Max multibyte sequence */
67
70
#define MAX_FIELD_CHARLENGTH    255
71
74
/* Max column width +1 */
72
75
#define MAX_FIELD_WIDTH         (MAX_FIELD_CHARLENGTH*MAX_MBWIDTH+1)
73
76
 
 
77
#define MAX_DATETIME_COMPRESSED_WIDTH 14  /* YYYYMMDDHHMMSS */
 
78
 
74
79
#define MAX_TABLES      (sizeof(table_map)*8-3) /* Max tables in join */
75
80
#define PARAM_TABLE_BIT (((table_map) 1) << (sizeof(table_map)*8-3))
76
81
#define OUTER_REF_TABLE_BIT     (((table_map) 1) << (sizeof(table_map)*8-2))
101
106
*/
102
107
#define MIN_TURBOBM_PATTERN_LEN 3
103
108
 
 
109
/*
 
110
   Defines for binary logging.
 
111
   Do not decrease the value of BIN_LOG_HEADER_SIZE.
 
112
   Do not even increase it before checking code.
 
113
*/
 
114
 
 
115
#define BIN_LOG_HEADER_SIZE    4
 
116
 
104
117
/* Below are #defines that used to be in mysql_priv.h */
105
118
/***************************************************************************
106
119
  Configuration parameters
107
120
****************************************************************************/
108
121
#define MAX_FIELDS_BEFORE_HASH  32
 
122
#define USER_VARS_HASH_SIZE     16
109
123
#define TABLE_OPEN_CACHE_MIN    64
110
124
#define TABLE_OPEN_CACHE_DEFAULT 1024
111
125
 
177
191
/** Characters shown for the command in 'show processlist'. */
178
192
#define PROCESS_LIST_WIDTH 100
179
193
 
 
194
#define PRECISION_FOR_DOUBLE 53
 
195
#define PRECISION_FOR_FLOAT  24
 
196
 
 
197
/* The following can also be changed from the command line */
 
198
#define DEFAULT_CONCURRENCY     10
 
199
#define FLUSH_TIME              0               /**< Don't flush tables */
 
200
#define MAX_CONNECT_ERRORS      10              ///< errors before disabling host
 
201
 
 
202
/* Bits from testflag */
 
203
enum test_flag_bit
 
204
{
 
205
  TEST_PRINT_CACHED_TABLES= 1,
 
206
  TEST_NO_KEY_GROUP,
 
207
  TEST_MIT_THREAD,
 
208
  TEST_KEEP_TMP_TABLES,
 
209
  TEST_READCHECK, /**< Force use of readcheck */
 
210
  TEST_NO_EXTRA,
 
211
  TEST_CORE_ON_SIGNAL, /**< Give core if signal */
 
212
  TEST_NO_STACKTRACE,
 
213
  TEST_SIGINT, /**< Allow sigint on threads */
 
214
  TEST_SYNCHRONIZATION /**< get server to do sleep in some places */
 
215
};
 
216
 
180
217
/* Bits for different SQL modes modes (including ANSI mode) */
181
218
#define MODE_NO_ZERO_DATE               (2)
182
219
#define MODE_INVALID_DATES              (MODE_NO_ZERO_DATE*2)
256
293
#define HA_KEY_SWITCH_ALL_SAVE     3
257
294
 
258
295
/*
 
296
  Note: the following includes binlog and closing 0.
 
297
  so: innodb + bdb + ndb + binlog + myisam + myisammrg + archive +
 
298
      example + csv + heap + blackhole + federated + 0
 
299
  (yes, the sum is deliberately inaccurate)
 
300
  TODO remove the limit, use dynarrays
 
301
*/
 
302
#define MAX_HA 15
 
303
 
 
304
/*
259
305
  Parameters for open() (in register form->filestat)
260
306
  HA_GET_INFO does an implicit HA_ABORT_IF_LOCKED
261
307
*/
272
318
#define HA_BLOCK_LOCK           256     /* unlock when reading some records */
273
319
#define HA_OPEN_TEMPORARY       512
274
320
 
 
321
/* For transactional LOCK Table. handler::lock_table() */
 
322
#define HA_LOCK_IN_SHARE_MODE      F_RDLCK
 
323
#define HA_LOCK_IN_EXCLUSIVE_MODE  F_WRLCK
 
324
 
275
325
/* Some key definitions */
276
326
#define HA_KEY_NULL_LENGTH      1
277
327
#define HA_KEY_BLOB_LENGTH      2
278
328
 
279
 
const uint32_t HA_MAX_REC_LENGTH = 65535;
 
329
#define HA_MAX_REC_LENGTH       65535
280
330
 
281
331
/* Options of START TRANSACTION statement (and later of SET TRANSACTION stmt) */
282
332
enum start_transaction_option_t
295
345
#define HA_CREATE_USED_AUTO             (1L << 0)
296
346
#define HA_CREATE_USED_CHARSET          (1L << 8)
297
347
#define HA_CREATE_USED_DEFAULT_CHARSET  (1L << 9)
 
348
#define HA_CREATE_USED_ROW_FORMAT       (1L << 15)
298
349
 
299
350
/*
300
351
  The below two are not used (and not handled) in this milestone of this WL
359
410
#define MY_COLL_DISALLOW_NONE         4
360
411
#define MY_COLL_CMP_CONV              7
361
412
 
362
 
inline static void clear_timestamp_auto_bits(timestamp_auto_set_type &_target_, 
363
 
                                             timestamp_auto_set_type _bits_)
 
413
inline static void clear_timestamp_auto_bits(enum timestamp_auto_set_type &_target_, 
 
414
                                             const enum timestamp_auto_set_type _bits_)
364
415
{
365
 
  _target_= static_cast<timestamp_auto_set_type>(_target_ & ~_bits_);
 
416
  _target_= (enum timestamp_auto_set_type)((int)(_target_) & ~_bits_);
366
417
}
367
418
 
368
419
/*
402
453
  if (a > b)
403
454
    a=b;
404
455
}
405
 
 
406
 
template<class T> inline void safe_delete(T*& ptr)
407
 
{
408
 
  delete ptr;
409
 
  ptr = 0;
410
 
}
411
456
#else
412
457
#ifdef __GNUC__
413
458
#define set_if_bigger(a,b) do {                 \
466
511
#define uint64_t2double(A) ((double) (uint64_t) (A))
467
512
#endif
468
513
 
469
 
#ifndef int64_t2double
470
 
#define int64_t2double(A) ((double) (int64_t) (A))
471
 
#endif
472
 
 
473
514
#ifndef offsetof
474
515
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
475
516
#endif
 
517
#define ulong_to_double(X) ((double) (ulong) (X))
476
518
 
477
519
/* From limits.h instead */
478
520
#ifndef DBL_MIN
500
542
*/
501
543
#define MY_ALIGN(A,L)  (((A) + (L) - 1) & ~((L) - 1))
502
544
#define ALIGN_SIZE(A)  MY_ALIGN((A),sizeof(double))
 
545
/* Size to make adressable obj. */
 
546
#define ALIGN_PTR(A, t) ((t*) MY_ALIGN((A),sizeof(t)))
 
547
/* Offset of field f in structure t */
 
548
#define OFFSET(t, f)  ((size_t)(char *)&((t *)0)->f)
503
549
#ifdef __cplusplus
504
550
#define ADD_TO_PTR(ptr,size,type) (type) (reinterpret_cast<const unsigned char*>(ptr)+size)
 
551
#define PTR_BYTE_DIFF(A,B) (ptrdiff_t) (reinterpret_cast<const unsigned char*>(A) - reinterpret_cast<const unsigned char*>(B))
505
552
#else
506
553
 #define ADD_TO_PTR(ptr,size,type) (type) ((unsigned char*) (ptr)+size)
 
554
 #define PTR_BYTE_DIFF(A,B) (ptrdiff_t) ((unsigned char*) (A) - (unsigned char*) (B))
507
555
#endif
508
556
 
509
557
#define MY_DIV_UP(A, B) (((A) + (B) - 1) / (B))
539
587
#define IO_SIZE 4096
540
588
/* Max file name len */
541
589
#define FN_LEN 256
 
590
/* Max length of extension (part of FN_LEN) */
 
591
#define FN_EXTLEN 20
542
592
/* Max length of full path-name */
543
593
#define FN_REFLEN 512
544
594
/* File extension character */