Remove obsolete tests and unused sample files.

This commit is contained in:
Daniel Nichter
2011-10-11 10:54:29 -06:00
parent df7366d302
commit 2de29214b9
19 changed files with 0 additions and 538 deletions

View File

@@ -1,7 +0,0 @@
USE test;
DROP TABLE IF EXISTS args;
CREATE TABLE args (
db char(64) NOT NULL,
tbl char(64) NOT NULL,
PRIMARY KEY (db, tbl)
);

File diff suppressed because one or more lines are too long

View File

@@ -1,15 +0,0 @@
USE test;
DROP TABLE IF EXISTS issue_122;
CREATE TABLE issue_122 (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
a CHAR(1)
);
DROP TABLE IF EXISTS argtable;
CREATE TABLE argtable (
db CHAR(64) NOT NULL,
tbl CHAR(64) NOT NULL,
since CHAR(64),
PRIMARY KEY (db, tbl)
);
INSERT INTO test.argtable VALUES ('test','issue_122',NULL);

View File

@@ -1,5 +0,0 @@
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
test issue_122 1 127.1 MyISAM 2 45e6c489 0 0 NULL NULL
test issue_122 3 127.1 MyISAM 2 45e6c489 0 0 NULL NULL
test issue_122 5 127.1 MyISAM 2 b7905e9e 0 0 NULL NULL
test issue_94 0 127.1 MyISAM NULL 2609439684 0 0 NULL NULL

View File

@@ -1,10 +0,0 @@
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;

View File

@@ -1,22 +0,0 @@
drop database if exists test;
create database test;
use test;
create table checksum_test(
a int not null primary key auto_increment
) auto_increment = 5;
insert into checksum_test(a) values (1);
CREATE TABLE checksum (
db char(64) NOT NULL,
tbl char(64) NOT NULL,
chunk int NOT NULL,
boundaries char(64) NOT NULL,
this_crc char(40) NOT NULL,
this_cnt int NOT NULL,
master_crc char(40) NULL,
master_cnt int NULL,
ts timestamp NOT NULL,
PRIMARY KEY (db, tbl, chunk)
) ENGINE=InnoDB;

View File

@@ -1,6 +0,0 @@
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
sakila actor 0 localhost InnoDB NULL 3596356558 0 0 NULL NULL
sakila address 0 localhost InnoDB NULL 3083097758 0 0 NULL NULL
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
sakila2 actor 0 localhost InnoDB NULL 3596356559 0 0 NULL NULL
sakila2 address 0 localhost InnoDB NULL 3083097758 0 0 NULL NULL

View File

@@ -1,5 +0,0 @@
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
sakila actor 0 localhost InnoDB NULL 3596356558 0 0 NULL NULL
sakila actor 0 127.0.0.1 InnoDB NULL 3596356559 0 0 NULL NULL
sakila2 actor2 0 localhost InnoDB NULL 3596356559 0 0 NULL NULL
sakila2 actor2 0 127.0.0.1 InnoDB NULL 3596356559 0 0 NULL NULL

View File

@@ -1,35 +0,0 @@
DATABASE TABLE CHECKSUM
mysql columns_priv 3398182975
mysql columns_priv 3398182975
mysql db 3266477049
mysql db 3266477049
mysql func 1212860919
mysql func 1212860919
mysql help_category 440459947
mysql help_category 440459947
mysql help_keyword 4036367086
mysql help_keyword 4036367086
mysql help_relation 2135601206
mysql help_relation 2135601206
mysql help_topic 1182972054
mysql help_topic 1182972054
mysql host 4086925997
mysql host 4086925997
mysql proc 2455629315
mysql proc 2455629315
mysql procs_priv 1845814295
mysql procs_priv 1845814295
mysql tables_priv 280363444
mysql tables_priv 280363444
mysql time_zone 3541879645
mysql time_zone 3541879645
mysql time_zone_leap_second 2518732586
mysql time_zone_leap_second 2518732586
mysql time_zone_name 2777177516
mysql time_zone_name 2777177516
mysql time_zone_transition 841396046
mysql time_zone_transition 841396046
mysql time_zone_transition_type 1458209022
mysql time_zone_transition_type 1458209022
mysql user 790728204
mysql user 790728204

View File

@@ -1,2 +0,0 @@
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
osc t 0 127.1 MyISAM 26 42f3fef3 0 0 NULL NULL

View File

@@ -1 +0,0 @@
# cannot chunk osc t

View File

@@ -1,3 +0,0 @@
DATABASE TABLE CHUNK COUNT
test checksum_test 0 2
test checksum_test 1 3

View File

@@ -1,26 +0,0 @@
drop database if exists test;
create database test;
use test;
CREATE TABLE `checksum_test` (
`id` int(11) NOT NULL DEFAULT '0',
`date` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
INSERT INTO `checksum_test` VALUES
(1, '2011-03-01'),
(2, '2011-03-01'),
(3, '2011-03-01'),
(4, '2011-03-01'),
(5, '2011-03-01'),
(6, '2011-03-02'),
(7, '2011-03-02'),
(8, '2011-03-02'),
(9, '2011-03-02'),
(10, '2011-03-02'),
(11, '2011-03-03'),
(12, '2011-03-03'),
(13, '2011-03-03'),
(14, '2011-03-03'),
(15, '2011-03-03');

View File

@@ -1,4 +0,0 @@
DATABASE TABLE CHUNK COUNT
test checksum_test 0 1
test checksum_test 1 4
test checksum_test 2 0

View File

@@ -1,26 +0,0 @@
drop database if exists test;
create database test;
use test;
CREATE TABLE `checksum_test` (
`id` varchar(255) NOT NULL,
`date` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
INSERT INTO `checksum_test` VALUES
('Apple', '2011-03-03'),
('banana', '2011-03-01'),
('orange', '2011-03-01'),
('grape', '2011-03-01'),
('kiwi', '2011-03-01'),
('strawberry', '2011-03-02'),
('peach', '2011-03-02'),
('mango', '2011-03-02'),
('tomato', '2011-03-02'),
('nectarine', '2011-03-02'),
('pear', '2011-03-01'),
('lemon', '2011-03-03'),
('lime', '2011-03-03'),
('pineapple', '2011-03-03'),
('raspberry', '2011-03-03');