mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-20 19:04:59 +00:00
Add forked Maatkit tools in bin/ and their tests in t/.
This commit is contained in:
10
t/pt-table-checksum/samples/issue_922.sql
Normal file
10
t/pt-table-checksum/samples/issue_922.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS t;
|
||||
CREATE TABLE t (
|
||||
i int not null auto_increment primary key,
|
||||
c varchar(32)
|
||||
);
|
||||
INSERT INTO test.t VALUES (null, 'aa'), (null, 'ab'), (null, 'ac'), (null, 'ad');
|
||||
SET SQL_LOG_BIN=0;
|
||||
INSERT INTO test.t VALUES (null, 'zz'), (null, 'zb');
|
||||
SET SQL_LOG_BIN=1;
|
Reference in New Issue
Block a user