Add forked Maatkit tools in bin/ and their tests in t/.

This commit is contained in:
Daniel Nichter
2011-06-24 16:02:05 -06:00
parent 6c501128e6
commit b4b6376be1
679 changed files with 177876 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
DROP DATABASE IF EXISTS issue_663;
CREATE DATABASE issue_663;
USE issue_663;
CREATE TABLE `t` (
`id` int(10) unsigned NOT NULL auto_increment,
`trx_id` int(10) unsigned default NULL,
`dTime` datetime NOT NULL,
`xmlerror` text,
PRIMARY KEY (`id`),
KEY `idx1` (`trx_id`),
KEY `idx2` (`trx_id`, `xmlerror`(128), `dTime`)
) ENGINE=MyISAM;