mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
11 lines
291 B
SQL
11 lines
291 B
SQL
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;
|