summaryrefslogtreecommitdiff
path: root/mysql-test/r/log_tables.result
diff options
context:
space:
mode:
authorElena Stepanova <elenst@montyprogram.com>2015-01-15 20:15:50 +0400
committerElena Stepanova <elenst@montyprogram.com>2015-01-15 20:15:50 +0400
commit26a8a95cb3cbb5b843721baade5e52ac4703b8d6 (patch)
treea30fe825ce17f91a51abb1bafdad13ed8c4a46e9 /mysql-test/r/log_tables.result
parentdf2db863414dc592b7868517bcc0246de5f41007 (diff)
downloadmariadb-git-26a8a95cb3cbb5b843721baade5e52ac4703b8d6.tar.gz
MDEV-7431 main.log_tables fails sporadically in buildbot
Structure of the table created by the test to archive mysql.slow_log data didn't match the structure of mysql.slow_log. The failure only appeared if the slow_log was not empty, which was very rare. Updated the structure of the table.
Diffstat (limited to 'mysql-test/r/log_tables.result')
-rw-r--r--mysql-test/r/log_tables.result3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/log_tables.result b/mysql-test/r/log_tables.result
index 4471c01c99b..04cd2f01050 100644
--- a/mysql-test/r/log_tables.result
+++ b/mysql-test/r/log_tables.result
@@ -536,7 +536,8 @@ CREATE TABLE `db_17876.slow_log_data` (
`last_insert_id` int(11) default NULL,
`insert_id` int(11) default NULL,
`server_id` int(11) default NULL,
-`sql_text` mediumtext
+`sql_text` mediumtext,
+`thread_id` bigint(21) unsigned default NULL
);
CREATE TABLE `db_17876.general_log_data` (
`event_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,