Fixed result file. Blob width 8192 changed to 16777216.

include/mysql_com.h:
  Fix for Bug#20208 "Blobs greater than 8K are being truncated to 8K"
sql/filesort.cc:
  Added a missing break point.
sql/item.cc:
  Made a function of a block of code.
sql/item.h:
  Added function string_field_type()
This commit is contained in:
unknown 2006-09-22 16:35:52 +03:00
commit 6db4171691
9 changed files with 828 additions and 820 deletions

View file

@ -626,6 +626,7 @@ static inline void store_length(uchar *to, uint length, uint pack_length)
break;
case 3:
mi_int3store(to, length);
break;
default:
mi_int4store(to, length);
break;