diff options
author | anozdrin/alik@booka.opbmk <> | 2007-03-09 08:05:08 +0300 |
---|---|---|
committer | anozdrin/alik@booka.opbmk <> | 2007-03-09 08:05:08 +0300 |
commit | c666e2f276b897d7f0bec3921243d8c0eb3d3a99 (patch) | |
tree | ff8b9dddd069653f26eb2cf2af2e9e5977f20b74 /sql/item.h | |
parent | 17929083813cd84f4005acf775fe2e78e9cfc62e (diff) | |
download | mariadb-git-c666e2f276b897d7f0bec3921243d8c0eb3d3a99.tar.gz |
Polishing: use constants instead of magic numbers.
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sql/item.h b/sql/item.h index 833bebdee7e..39cdb68fa00 100644 --- a/sql/item.h +++ b/sql/item.h @@ -1494,11 +1494,14 @@ class Item_int :public Item_num { public: longlong value; - Item_int(int32 i,uint length=11) :value((longlong) i) + Item_int(int32 i,uint length= MY_INT32_NUM_DECIMAL_DIGITS) + :value((longlong) i) { max_length=length; fixed= 1; } - Item_int(longlong i,uint length=21) :value(i) + Item_int(longlong i,uint length= MY_INT64_NUM_DECIMAL_DIGITS) + :value(i) { max_length=length; fixed= 1; } - Item_int(ulonglong i, uint length= 21) :value((longlong)i) + Item_int(ulonglong i, uint length= MY_INT64_NUM_DECIMAL_DIGITS) + :value((longlong)i) { max_length=length; fixed= 1; unsigned_flag= 1; } Item_int(const char *str_arg,longlong i,uint length) :value(i) { max_length=length; name=(char*) str_arg; fixed= 1; } |