diff options
author | kostja@bodhi.local <> | 2007-03-19 23:59:53 +0300 |
---|---|---|
committer | kostja@bodhi.local <> | 2007-03-19 23:59:53 +0300 |
commit | a9065201d5b35a04d5681daeb9c7f8f831eb53b4 (patch) | |
tree | 4ce7f23faf1f92e854083442f093270a2cd2f098 /include | |
parent | e84584e2e34c9c32b132f785909c576cb233f9c3 (diff) | |
parent | f87899c50e89d18944c351b52dd40fbb09b598d9 (diff) | |
download | mariadb-git-a9065201d5b35a04d5681daeb9c7f8f831eb53b4.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into bodhi.local:/opt/local/work/mysql-5.0-runtime
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 */ |