summaryrefslogtreecommitdiff
path: root/include/mysql_com.h
diff options
context:
space:
mode:
authorunknown <jani@ua141d10.elisa.omakaista.fi>2006-09-22 16:35:52 +0300
committerunknown <jani@ua141d10.elisa.omakaista.fi>2006-09-22 16:35:52 +0300
commit6db41716915cdf45d92a023c17343c9554f61d47 (patch)
tree2b06d6c0bec11e0876a02a614d5586819f5d0a24 /include/mysql_com.h
parent936fcddb7e7a7223ddffa38080c55cc350ef5c43 (diff)
downloadmariadb-git-6db41716915cdf45d92a023c17343c9554f61d47.tar.gz
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()
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r--include/mysql_com.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h
index c65f5944747..7608fdb48c9 100644
--- a/include/mysql_com.h
+++ b/include/mysql_com.h
@@ -178,7 +178,7 @@ typedef struct st_vio Vio;
#define MAX_INT_WIDTH 10 /* Max width for a LONG w.o. sign */
#define MAX_BIGINT_WIDTH 20 /* Max width for a LONGLONG */
#define MAX_CHAR_WIDTH 255 /* Max length for a CHAR colum */
-#define MAX_BLOB_WIDTH 8192 /* Default width for blob */
+#define MAX_BLOB_WIDTH 16777216 /* Default width for blob */
typedef struct st_net {
#if !defined(CHECK_EMBEDDED_DIFFERENCES) || !defined(EMBEDDED_LIBRARY)