diff options
author | unknown <bell@sanja.is.com.ua> | 2004-12-03 22:40:11 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-12-03 22:40:11 +0200 |
commit | 7842187224ab82ed8226d128d49c5ab685f3081a (patch) | |
tree | 8974b31b36cdaed725ab25ce63f4dc1c58a16e94 /sql | |
parent | e6a31aee56b3dcfb731ec709130ed0a59979370c (diff) | |
parent | 702e03fa594a19e99ba26f214d124db94252b38c (diff) | |
download | mariadb-git-7842187224ab82ed8226d128d49c5ab685f3081a.tar.gz |
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-qc-4.1
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item.h b/sql/item.h index ccb0fda1c49..3c4f80e3857 100644 --- a/sql/item.h +++ b/sql/item.h @@ -1127,7 +1127,7 @@ class Item_cache_int: public Item_cache { longlong value; public: - Item_cache_int(): Item_cache() {} + Item_cache_int(): Item_cache(), value(0) {} void store(Item *item); double val() { DBUG_ASSERT(fixed == 1); return (double) value; } @@ -1145,7 +1145,7 @@ class Item_cache_real: public Item_cache { double value; public: - Item_cache_real(): Item_cache() {} + Item_cache_real(): Item_cache(), value(0) {} void store(Item *item); double val() { DBUG_ASSERT(fixed == 1); return value; } @@ -1167,7 +1167,7 @@ class Item_cache_str: public Item_cache char buffer[80]; String *value, value_buff; public: - Item_cache_str(): Item_cache() { } + Item_cache_str(): Item_cache(), value(0) { } void store(Item *item); double val(); |