diff options
author | unknown <stewart@mysql.com> | 2005-02-17 11:45:13 +1100 |
---|---|---|
committer | unknown <stewart@mysql.com> | 2005-02-17 11:45:13 +1100 |
commit | 9fcbd39e786a670afa8ecb1ea2e59164c7c6719c (patch) | |
tree | 21b42018513e2f65c8c163b7e2b25207370491e0 /sql/item_buff.cc | |
parent | 9475d22a47c77861a53c25b2046290c78adc0351 (diff) | |
parent | de5fa1dc3396dee1bf5fba06bcbd2b482946bcae (diff) | |
download | mariadb-git-9fcbd39e786a670afa8ecb1ea2e59164c7c6719c.tar.gz |
Merge mysql.com:/home/stewart/Documents/MySQL/5.0/ndb
into mysql.com:/home/stewart/Documents/MySQL/5.0/ndb-dynamic-ports
Diffstat (limited to 'sql/item_buff.cc')
-rw-r--r-- | sql/item_buff.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/item_buff.cc b/sql/item_buff.cc index 7c77f7fa3bc..af17d377e31 100644 --- a/sql/item_buff.cc +++ b/sql/item_buff.cc @@ -28,8 +28,7 @@ Item_buff *new_Item_buff(Item *item) if (item->type() == Item::FIELD_ITEM && !(((Item_field *) item)->field->flags & BLOB_FLAG)) return new Item_field_buff((Item_field *) item); - switch (item->result_type()) - { + switch (item->result_type()) { case STRING_RESULT: return new Item_str_buff((Item_field *) item); case INT_RESULT: |