From de06c48b6c85ad9a14a09a81a417b2531caf14cd Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Wed, 3 May 2017 08:07:56 +0100 Subject: [PATCH] MCOL-697 Remove 64KB VARCHAR response limit This was a hard coded limit due to StringStore not being able to handle more than this. It restricts hex() unnecessarily and is now redundant. --- dbcon/mysql/ha_calpont_execplan.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/dbcon/mysql/ha_calpont_execplan.cpp b/dbcon/mysql/ha_calpont_execplan.cpp index 4874adc11..536efe50a 100755 --- a/dbcon/mysql/ha_calpont_execplan.cpp +++ b/dbcon/mysql/ha_calpont_execplan.cpp @@ -2239,8 +2239,6 @@ CalpontSystemCatalog::ColType colType_MysqlToIDB (const Item* item) { if (ct.colWidth < 20) ct.colWidth = 20; // for infinidb date length - if (ct.colWidth > 65535) - ct.colWidth = 65535; } // @bug5083. MySQL gives string type for date/datetime column. // need to adjust here.