mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 23:25:34 +02:00
MDEV-11082 mysql_client_test: test_ps_query_cache fails with group-concat-max-len=1M
test_bug14169 was setting session group_concat_max_len=1024 and did not clean it up. Because of that test_ps_query_cache, when run with group-concat-max-len != 1024, had different values in connections, and was inserting into query cache when a hit was expected. Fixed by adding a clean-up for the value in test_bug14169
This commit is contained in:
parent
fd1f507283
commit
2584897833
1 changed files with 3 additions and 0 deletions
|
|
@ -15375,6 +15375,9 @@ static void test_bug14169()
|
|||
|
||||
rc= mysql_query(mysql, "drop table t1");
|
||||
myquery(rc);
|
||||
|
||||
rc= mysql_query(mysql, "set session group_concat_max_len=@@global.group_concat_max_len");
|
||||
myquery(rc);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue