Commit 0c0b3ea9 authored by unknown's avatar unknown

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
parent ef62de33
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment