You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
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.
This commit is contained in:
@ -2239,8 +2239,6 @@ CalpontSystemCatalog::ColType colType_MysqlToIDB (const Item* item)
|
|||||||
{
|
{
|
||||||
if (ct.colWidth < 20)
|
if (ct.colWidth < 20)
|
||||||
ct.colWidth = 20; // for infinidb date length
|
ct.colWidth = 20; // for infinidb date length
|
||||||
if (ct.colWidth > 65535)
|
|
||||||
ct.colWidth = 65535;
|
|
||||||
}
|
}
|
||||||
// @bug5083. MySQL gives string type for date/datetime column.
|
// @bug5083. MySQL gives string type for date/datetime column.
|
||||||
// need to adjust here.
|
// need to adjust here.
|
||||||
|
Reference in New Issue
Block a user