mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-25 21:54:48 +00:00
Largely working, but un-tested, pt-upgrade 2.2 for host-to-host comparison. Add EventExecutor.pm.
This commit is contained in:
4
t/pt-upgrade/samples/001/insert-warning.log
Normal file
4
t/pt-upgrade/samples/001/insert-warning.log
Normal file
@@ -0,0 +1,4 @@
|
||||
# User@Host: root[root] @ localhost []
|
||||
# Query_time: 1 Lock_time: 0 Rows_sent: 0 Rows_examined: 1
|
||||
use test;
|
||||
INSERT INTO t (id, username, last_login) VALUES (6, 'new_user_name_is_too_long', '2013-01-01 00:00:00');
|
4
t/pt-upgrade/samples/001/select-all-rows.log
Normal file
4
t/pt-upgrade/samples/001/select-all-rows.log
Normal file
@@ -0,0 +1,4 @@
|
||||
# User@Host: root[root] @ localhost []
|
||||
# Query_time: 1 Lock_time: 0 Rows_sent: 7 Rows_examined: 7
|
||||
use test;
|
||||
select * from test.t order by id;
|
@@ -4,7 +4,7 @@ USE test;
|
||||
DROP TABLE IF EXISTS t;
|
||||
CREATE TABLE `t` (
|
||||
`id` int(10) NOT NULL,
|
||||
`name` varchar(255) default NULL,
|
||||
`username` varchar(32) default NULL,
|
||||
`last_login` datetime default NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
);
|
||||
|
Reference in New Issue
Block a user