MT#57461 Ignore tables' table_collation

In mariadb 10.6 utf8 was renamed to to utf8mb3:
https://jira.mariadb.org/browse/MDEV-8334

Now json files are built on mariadb 10.5 while on bookworm mariadb 10.11
is used. So until trunk is switched to bookworm we have to skip this
part.

Change-Id: Ia28b9560f516af569c9e76c318d08765af42740f
mr11.4.1
Mykola Malkov 3 years ago
parent fef69f77cb
commit 3e66fbb1b4

@ -20,6 +20,8 @@ use JSON::XS;
# For columns: columns/<schema-name>/<table-name>_<column-name>
# columns/billing/table1_column1/is_nullable
# tables/mysql/.+/create_options
# Remove tables/.+/.+/table_collation when trunk is switched to bookworm
my @diff_exceptions = qw(
views/ldap/ldap_entries/view_definition
tables/mysql/.+/create_options
@ -44,6 +46,8 @@ my @diff_exceptions = qw(
.+/accounting/cdr_group_[0-9]{6}/.+
.+/accounting/cdr_period_costs_[0-9]{6}/.+
.+/accounting/cdr_[0-9]{6}/.+
tables/.+/.+/table_collation
);
my $credentials_file = '/etc/mysql/sipwise_extra.cnf';

Loading…
Cancel
Save