1
0
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:
Mikael Ronstrom
2009-10-23 09:36:45 +02:00
parent cecef1c56e
commit fbac636380
3 changed files with 3 additions and 3 deletions

View File

@ -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;