Skip to content

Commit

Permalink
MDEV-7917 main.log_tables fails sporadically in buildbot #2
Browse files Browse the repository at this point in the history
mysql.slow_log table has an extra column in 10.1, so the test
table copy should too -- added the column.
  • Loading branch information
elenst committed Apr 6, 2015
1 parent 2f6d63f commit eb83e94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mysql-test/r/log_tables.result
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,8 @@ CREATE TABLE `db_17876.slow_log_data` (
`insert_id` int(11) default NULL,
`server_id` int(11) default NULL,
`sql_text` mediumtext,
`thread_id` bigint(21) unsigned default NULL
`thread_id` bigint(21) unsigned default NULL,
`rows_affected` int(11) default NULL
);
CREATE TABLE `db_17876.general_log_data` (
`event_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
Expand Down
3 changes: 2 additions & 1 deletion mysql-test/t/log_tables.test
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,8 @@ CREATE TABLE `db_17876.slow_log_data` (
`insert_id` int(11) default NULL,
`server_id` int(11) default NULL,
`sql_text` mediumtext,
`thread_id` bigint(21) unsigned default NULL
`thread_id` bigint(21) unsigned default NULL,
`rows_affected` int(11) default NULL
);

CREATE TABLE `db_17876.general_log_data` (
Expand Down

0 comments on commit eb83e94

Please sign in to comment.