Update result file to 5.1 format of SHOW CREATE

parent 3a8b0edc
...@@ -100,7 +100,7 @@ INSERT INTO t1 VALUES (1), (2); ...@@ -100,7 +100,7 @@ INSERT INTO t1 VALUES (1), (2);
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `t1`; DROP TABLE IF EXISTS `t1`;
CREATE TABLE `t1` ( CREATE TABLE `t1` (
`a` int(11) default NULL `a` int(11) DEFAULT NULL
); );
LOCK TABLES `t1` WRITE; LOCK TABLES `t1` WRITE;
...@@ -131,7 +131,7 @@ UNLOCK TABLES; ...@@ -131,7 +131,7 @@ UNLOCK TABLES;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `t1`; DROP TABLE IF EXISTS `t1`;
CREATE TABLE `t1` ( CREATE TABLE `t1` (
`a` int(11) default NULL `a` int(11) DEFAULT NULL
); );
LOCK TABLES `t1` WRITE; LOCK TABLES `t1` WRITE;
...@@ -162,7 +162,7 @@ UNLOCK TABLES; ...@@ -162,7 +162,7 @@ UNLOCK TABLES;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `t1`; DROP TABLE IF EXISTS `t1`;
CREATE TABLE `t1` ( CREATE TABLE `t1` (
`a` int(11) default NULL `a` int(11) DEFAULT NULL
); );
LOCK TABLES `t1` WRITE; LOCK TABLES `t1` WRITE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment