diff options
author | unknown <tsmith@quadxeon.mysql.com> | 2007-03-21 23:58:02 +0100 |
---|---|---|
committer | unknown <tsmith@quadxeon.mysql.com> | 2007-03-21 23:58:02 +0100 |
commit | b203723bd8f11a85e05e446850d94ad5f5442028 (patch) | |
tree | d0d4dfdac0af94ee6cc94875bb82fd410d9378f2 /include | |
parent | e772a22d40368d4b8f4f905831ffd5de683fa0fa (diff) | |
parent | 54a0f623c733b10f03308edae5503b7bcb81fcf9 (diff) | |
download | mariadb-git-b203723bd8f11a85e05e446850d94ad5f5442028.tar.gz |
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-runtime
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/50
Diffstat (limited to 'include')
-rw-r--r-- | include/my_global.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/my_global.h b/include/my_global.h index 21fe1ebc3cb..61c2afc541b 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -1357,4 +1357,13 @@ do { doubleget_union _tmp; \ #define NO_EMBEDDED_ACCESS_CHECKS #endif + +/* Length of decimal number represented by INT32. */ + +#define MY_INT32_NUM_DECIMAL_DIGITS 11 + +/* Length of decimal number represented by INT64. */ + +#define MY_INT64_NUM_DECIMAL_DIGITS 21 + #endif /* my_global_h */ |