1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-7917 main.log_tables fails sporadically in buildbot #2

mysql.slow_log table has an extra column in 10.1, so the test
table copy should too -- added the column.
This commit is contained in:
Elena Stepanova
2015-04-06 19:13:33 +03:00
parent 2f6d63f063
commit eb83e9405f
2 changed files with 4 additions and 2 deletions

View File

@ -542,7 +542,8 @@ CREATE TABLE `db_17876.slow_log_data` (
`insert_id` int(11) default NULL, `insert_id` int(11) default NULL,
`server_id` int(11) default NULL, `server_id` int(11) default NULL,
`sql_text` mediumtext, `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` ( CREATE TABLE `db_17876.general_log_data` (
`event_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `event_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,

View File

@ -727,7 +727,8 @@ CREATE TABLE `db_17876.slow_log_data` (
`insert_id` int(11) default NULL, `insert_id` int(11) default NULL,
`server_id` int(11) default NULL, `server_id` int(11) default NULL,
`sql_text` mediumtext, `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` ( CREATE TABLE `db_17876.general_log_data` (