Skip to content

Commit

Permalink
increase the version string buffer in mariadb-upgrade
Browse files Browse the repository at this point in the history
there's no point in keeping it small.

this fixes numerous test failures in preview branches with
versions like 10.7.0-MDEV-xxxx-short-feature-description-MariaDB
  • Loading branch information
vuvova committed Sep 7, 2021
1 parent e836673 commit d0a1ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/mysql_upgrade.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ static char **defaults_argv;

static my_bool not_used; /* Can't use GET_BOOL without a value pointer */

char upgrade_from_version[sizeof("10.20.456-MariaDB")+1];
char upgrade_from_version[1024];

static my_bool opt_write_binlog;

Expand Down

0 comments on commit d0a1ea3

Please sign in to comment.