Commit 1ebf829d authored by hewei's avatar hewei

切换数据库引擎,加快测试用例执行速度

parent a87dcf9a
...@@ -24,7 +24,7 @@ CREATE TABLE `tb` ( ...@@ -24,7 +24,7 @@ CREATE TABLE `tb` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int DEFAULT NULL, `field2` int DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -40,7 +40,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -40,7 +40,7 @@ CREATE TABLE `tb_blobs` (
`field2` longtext COMMENT '注释2', `field2` longtext COMMENT '注释2',
`field3` longtext, `field3` longtext,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -56,7 +56,7 @@ CREATE TABLE `tb_keys` ( ...@@ -56,7 +56,7 @@ CREATE TABLE `tb_keys` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int DEFAULT NULL, `field2` int DEFAULT NULL,
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
...@@ -71,7 +71,7 @@ CREATE TABLE `tb_single_blob` ( ...@@ -71,7 +71,7 @@ CREATE TABLE `tb_single_blob` (
`field1` longtext COMMENT '注释2', `field1` longtext COMMENT '注释2',
`field2` int DEFAULT NULL, `field2` int DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_single_blob -- Records of tb_single_blob
......
...@@ -23,4 +23,4 @@ CREATE TABLE `tb` ( ...@@ -23,4 +23,4 @@ CREATE TABLE `tb` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '注释1', `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '注释1',
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB; ) ENGINE=MyISAM;
\ No newline at end of file \ No newline at end of file
...@@ -26,7 +26,7 @@ CREATE TABLE `tb` ( ...@@ -26,7 +26,7 @@ CREATE TABLE `tb` (
`inc_f2` bigint(20) DEFAULT '0', `inc_f2` bigint(20) DEFAULT '0',
`inc_f3` bigint(20) DEFAULT '0', `inc_f3` bigint(20) DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -49,7 +49,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -49,7 +49,7 @@ CREATE TABLE `tb_blobs` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -72,7 +72,7 @@ CREATE TABLE `tb_keys` ( ...@@ -72,7 +72,7 @@ CREATE TABLE `tb_keys` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
...@@ -93,7 +93,7 @@ CREATE TABLE `tb_single_blob` ( ...@@ -93,7 +93,7 @@ CREATE TABLE `tb_single_blob` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_single_blob -- Records of tb_single_blob
...@@ -112,7 +112,7 @@ CREATE TABLE `tb_key_word` ( ...@@ -112,7 +112,7 @@ CREATE TABLE `tb_key_word` (
`inc_f1` bigint(20) NOT NULL DEFAULT '0', `inc_f1` bigint(20) NOT NULL DEFAULT '0',
`update` bigint(20) NOT NULL DEFAULT '0', `update` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_key_word -- Records of tb_key_word
......
...@@ -28,7 +28,7 @@ CREATE TABLE `tb` ( ...@@ -28,7 +28,7 @@ CREATE TABLE `tb` (
`ts_3` float DEFAULT NULL, `ts_3` float DEFAULT NULL,
`ts_4` varchar(10) DEFAULT NULL, `ts_4` varchar(10) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
......
...@@ -26,7 +26,7 @@ CREATE TABLE `tb` ( ...@@ -26,7 +26,7 @@ CREATE TABLE `tb` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -45,7 +45,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -45,7 +45,7 @@ CREATE TABLE `tb_blobs` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -64,7 +64,7 @@ CREATE TABLE `tb_keys` ( ...@@ -64,7 +64,7 @@ CREATE TABLE `tb_keys` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
...@@ -83,7 +83,7 @@ CREATE TABLE `tb_keys_blobs` ( ...@@ -83,7 +83,7 @@ CREATE TABLE `tb_keys_blobs` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
......
...@@ -26,7 +26,7 @@ CREATE TABLE `tb` ( ...@@ -26,7 +26,7 @@ CREATE TABLE `tb` (
`inc_f2` bigint(20) DEFAULT '0', `inc_f2` bigint(20) DEFAULT '0',
`inc_f3` bigint(20) DEFAULT '0', `inc_f3` bigint(20) DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -45,7 +45,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -45,7 +45,7 @@ CREATE TABLE `tb_blobs` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -64,7 +64,7 @@ CREATE TABLE `tb_keys` ( ...@@ -64,7 +64,7 @@ CREATE TABLE `tb_keys` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`key_1`,`key_2`) PRIMARY KEY (`key_1`,`key_2`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
......
...@@ -26,7 +26,7 @@ CREATE TABLE `tb` ( ...@@ -26,7 +26,7 @@ CREATE TABLE `tb` (
`inc_f2` bigint(20) DEFAULT '0', `inc_f2` bigint(20) DEFAULT '0',
`inc_f3` bigint(20) DEFAULT '0', `inc_f3` bigint(20) DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -49,7 +49,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -49,7 +49,7 @@ CREATE TABLE `tb_blobs` (
`inc_f2` bigint(20) DEFAULT '0', `inc_f2` bigint(20) DEFAULT '0',
`inc_f3` bigint(20) DEFAULT '0', `inc_f3` bigint(20) DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -72,7 +72,7 @@ CREATE TABLE `tb_keys` ( ...@@ -72,7 +72,7 @@ CREATE TABLE `tb_keys` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
...@@ -93,7 +93,7 @@ CREATE TABLE `tb_single_blob` ( ...@@ -93,7 +93,7 @@ CREATE TABLE `tb_single_blob` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_single_blob -- Records of tb_single_blob
...@@ -112,7 +112,7 @@ CREATE TABLE `tb_key_word` ( ...@@ -112,7 +112,7 @@ CREATE TABLE `tb_key_word` (
`inc_f1` bigint(20) NOT NULL DEFAULT '0', `inc_f1` bigint(20) NOT NULL DEFAULT '0',
`update` bigint(20) NOT NULL DEFAULT '0', `update` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_key_word -- Records of tb_key_word
......
...@@ -24,7 +24,7 @@ CREATE TABLE `tb` ( ...@@ -24,7 +24,7 @@ CREATE TABLE `tb` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -43,7 +43,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -43,7 +43,7 @@ CREATE TABLE `tb_blobs` (
`field2` longtext COMMENT '注释2', `field2` longtext COMMENT '注释2',
`field3` longtext, `field3` longtext,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -60,7 +60,7 @@ CREATE TABLE `tb_keys` ( ...@@ -60,7 +60,7 @@ CREATE TABLE `tb_keys` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
......
...@@ -24,7 +24,7 @@ CREATE TABLE `tb` ( ...@@ -24,7 +24,7 @@ CREATE TABLE `tb` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -44,7 +44,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -44,7 +44,7 @@ CREATE TABLE `tb_blobs` (
`field2` longtext COMMENT '注释2', `field2` longtext COMMENT '注释2',
`field3` longtext, `field3` longtext,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -64,7 +64,7 @@ CREATE TABLE `tb_keys` ( ...@@ -64,7 +64,7 @@ CREATE TABLE `tb_keys` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
...@@ -82,7 +82,7 @@ CREATE TABLE `tb_single_blob` ( ...@@ -82,7 +82,7 @@ CREATE TABLE `tb_single_blob` (
`field1` longtext COMMENT '注释2', `field1` longtext COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_single_blob -- Records of tb_single_blob
......
...@@ -26,7 +26,7 @@ CREATE TABLE `tb` ( ...@@ -26,7 +26,7 @@ CREATE TABLE `tb` (
`inc_f2` bigint(20) NOT NULL DEFAULT '0', `inc_f2` bigint(20) NOT NULL DEFAULT '0',
`inc_f3` bigint(20) NOT NULL DEFAULT '0', `inc_f3` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
......
...@@ -24,7 +24,7 @@ CREATE TABLE `tb` ( ...@@ -24,7 +24,7 @@ CREATE TABLE `tb` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb -- Records of tb
...@@ -43,7 +43,7 @@ CREATE TABLE `tb_blobs` ( ...@@ -43,7 +43,7 @@ CREATE TABLE `tb_blobs` (
`field2` longtext COMMENT '注释2', `field2` longtext COMMENT '注释2',
`field3` longtext, `field3` longtext,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_blobs -- Records of tb_blobs
...@@ -62,7 +62,7 @@ CREATE TABLE `tb_keys` ( ...@@ -62,7 +62,7 @@ CREATE TABLE `tb_keys` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`key1`,`key2`) PRIMARY KEY (`key1`,`key2`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_keys -- Records of tb_keys
...@@ -80,7 +80,7 @@ CREATE TABLE `tb_single_blob` ( ...@@ -80,7 +80,7 @@ CREATE TABLE `tb_single_blob` (
`field1` longtext COMMENT '注释2', `field1` longtext COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Records of tb_single_blob -- Records of tb_single_blob
...@@ -95,7 +95,7 @@ CREATE TABLE `tb_with_inc_id` ( ...@@ -95,7 +95,7 @@ CREATE TABLE `tb_with_inc_id` (
`field1` varchar(255) DEFAULT NULL COMMENT '注释2', `field1` varchar(255) DEFAULT NULL COMMENT '注释2',
`field2` int(11) DEFAULT NULL, `field2` int(11) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Table structure for tb_with_inc_id -- Table structure for tb_with_inc_id
-- ---------------------------- -- ----------------------------
...@@ -110,7 +110,7 @@ CREATE TABLE `tb_blobs_with_inc_id` ( ...@@ -110,7 +110,7 @@ CREATE TABLE `tb_blobs_with_inc_id` (
`field2` longtext COMMENT '注释3', `field2` longtext COMMENT '注释3',
`field3` longtext, `field3` longtext,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ---------------------------- -- ----------------------------
-- Table structure for tb_blobs_with_inc_id -- Table structure for tb_blobs_with_inc_id
-- ---------------------------- -- ----------------------------
\ No newline at end of file
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