1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

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
This commit is contained in:
unknown
2005-03-16 18:05:08 +02:00
parent ef62de3307
commit 0c0b3ea9b9

View File

@@ -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);