mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-21 03:14:58 +00:00
Convert pt-table-checksum boundaries to SQL WHERE clauses.
This commit is contained in:
File diff suppressed because one or more lines are too long
10
t/pt-table-sync/samples/simple-tbl-ddl.sql
Normal file
10
t/pt-table-sync/samples/simple-tbl-ddl.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE `it1` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`a` int(11) NOT NULL,
|
||||
`b` int(11) NOT NULL,
|
||||
`c` varchar(16) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `c` (`c`),
|
||||
UNIQUE KEY `id` (`id`,`c`),
|
||||
KEY `a` (`a`)
|
||||
) ENGINE=InnoDB
|
Reference in New Issue
Block a user