mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Upped size limit on varchar/char from 512 to 2048
This commit is contained in:
@ -4846,7 +4846,7 @@ get_partition_column_description(partition_info *part_info,
|
||||
tmp_str.append("NULL");
|
||||
else
|
||||
{
|
||||
char buffer[MAX_STR_SIZE_PF];
|
||||
char buffer[3 * MAX_STR_SIZE_PF + 10];
|
||||
String str(buffer, sizeof(buffer), &my_charset_bin);
|
||||
Item *item= col_val->item_expression;
|
||||
|
||||
|
Reference in New Issue
Block a user