1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

disable session_track_schema for perfschema.socket_summary_by_instance_func

because it counts number of bytes sent and expects it to be independent
from the database name length
This commit is contained in:
Sergei Golubchik
2016-09-21 13:20:24 +02:00
parent 59d51f0c12
commit d876f4bd5e
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,4 @@
set global session_track_schema=FALSE;
# The logging of commands and result sets is mostly disabled.
# There are some messages which help to observe the progress of the test.
# In case some check fails
@ -218,3 +219,4 @@ connection default;
TRUNCATE TABLE performance_schema.socket_summary_by_instance;
# 6. Cleanup
connection default;
set global session_track_schema=DEFAULT;