summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2005-03-16 18:05:08 +0200
committerunknown <heikki@hundin.mysql.fi>2005-03-16 18:05:08 +0200
commit0c0b3ea9b95bf24c0048caae4f9c1bb6db2435e4 (patch)
tree36123b73e19eaa51bee2f69b71a083fbbe870e2a /innobase
parentef62de330755b28d3917cdf3a6958708141fbdcd (diff)
downloadmariadb-git-0c0b3ea9b95bf24c0048caae4f9c1bb6db2435e4.tar.gz
data0data.c:
Allow also long VARCHARs to be stored externally, not just BLOBs; fixes a bug reported by Trudy Pelzer; needs more testing innobase/data/data0data.c: Allow also long VARCHARs to be stored externally, not just BLOBs; fixes a bug reported by Trudy Pelzer; needs more testing
Diffstat (limited to 'innobase')
-rw-r--r--innobase/data/data0data.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/innobase/data/data0data.c b/innobase/data/data0data.c
index 25ba19d0296..5f74dde8710 100644
--- a/innobase/data/data0data.c
+++ b/innobase/data/data0data.c
@@ -546,9 +546,7 @@ dtuple_convert_big_rec(
}
}
- if (!is_externally_stored
- && dict_index_get_nth_type(index, i)->mtype
- == DATA_BLOB) {
+ if (!is_externally_stored) {
dfield = dtuple_get_nth_field(entry, i);