mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
Fixed some compiler issues appeared after d7ffb7c3dd
Disabled atomic.rename_trigger.
This commit is contained in:
parent
63e3fc0bb7
commit
87e8463e04
3 changed files with 17 additions and 3 deletions
12
mysql-test/suite/atomic/disabled.def
Normal file
12
mysql-test/suite/atomic/disabled.def
Normal file
|
@ -0,0 +1,12 @@
|
|||
##############################################################################
|
||||
#
|
||||
# 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]=
|
|||
|
||||
static MY_UCA_INFO
|
||||
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)
|
|||
{
|
||||
char *comment;
|
||||
char *weight;
|
||||
MY_DUCET_CHARS chr = {0};
|
||||
MY_DUCET_CHARS chr = {{0,0,0,0,0,0}, 0};
|
||||
|
||||
if (str[0] == '#')
|
||||
continue;
|
||||
|
@ -803,7 +803,9 @@ int main(int ac, char **av)
|
|||
}
|
||||
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;
|
||||
if (chr.length >= MY_UCA_MAX_CONTRACTION)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue