Updated tests for schema iterator

This commit is contained in:
Carlos Salguero
2017-01-16 23:42:11 -03:00
parent 14f42bf988
commit 410e75a623
9 changed files with 83 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
test2.a
CREATE TABLE `a` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL
);

View File

@@ -0,0 +1,38 @@
test.a
CREATE TABLE `a` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL
);
test.b
CREATE TABLE `b` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL,
`c3` varchar(45) NOT NULL,
);
test2.a
CREATE TABLE `a` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL
);
test.a
CREATE TABLE `a` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL
);
test.b
CREATE TABLE `b` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL,
`c3` varchar(45) NOT NULL,
);
test2.a
CREATE TABLE `a` (
`c1` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`c2` varchar(45) NOT NULL
);