Commit 87e8463e authored by Igor Babaev's avatar Igor Babaev

Fixed some compiler issues appeared after d7ffb7c3

Disabled atomic.rename_trigger.
parent 63e3fc0b
##############################################################################
#
# List the test cases that are to be disabled temporarily.
#
# Separate the test case name and the comment with ':'.
#
# <testcasename> : BUG#<xxxx> <date disabled> <disabler> <comment>
#
# Do not use any TAB characters for whitespace.
#
##############################################################################
rename_trigger : MDEV-29282 2022:-08-16 Igor Babaev
...@@ -31309,7 +31309,7 @@ my_uca1400_collation_definitions[MY_UCA1400_COLLATION_DEFINITION_COUNT]= ...@@ -31309,7 +31309,7 @@ my_uca1400_collation_definitions[MY_UCA1400_COLLATION_DEFINITION_COUNT]=
static MY_UCA_INFO static MY_UCA_INFO
my_uca1400_info_tailored[MY_CS_ENCODING_LAST+1] my_uca1400_info_tailored[MY_CS_ENCODING_LAST+1]
[MY_UCA1400_COLLATION_DEFINITION_COUNT]= {0}; [MY_UCA1400_COLLATION_DEFINITION_COUNT];
/* /*
...@@ -762,7 +762,7 @@ int main(int ac, char **av) ...@@ -762,7 +762,7 @@ int main(int ac, char **av)
{ {
char *comment; char *comment;
char *weight; char *weight;
MY_DUCET_CHARS chr = {0}; MY_DUCET_CHARS chr = {{0,0,0,0,0,0}, 0};
if (str[0] == '#') if (str[0] == '#')
continue; continue;
...@@ -803,7 +803,9 @@ int main(int ac, char **av) ...@@ -803,7 +803,9 @@ int main(int ac, char **av)
} }
else else
{ {
MY_DUCET_WEIGHT weights= {0}; MY_DUCET_WEIGHT weights= {{{0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0}},
0};
my_bool dummy; my_bool dummy;
if (chr.length >= MY_UCA_MAX_CONTRACTION) if (chr.length >= MY_UCA_MAX_CONTRACTION)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment