summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/wrapper/r/column_normal_comment.result
blob: 3f7a445c6e2c9ee25a8acdd409ebd2499ff22164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DROP TABLE IF EXISTS bugs;
CREATE TABLE bugs (
id INT UNSIGNED PRIMARY KEY,
tag VARCHAR(64) COMMENT 'It must consist of only alphabet and number.'
) DEFAULT CHARSET=utf8 COMMENT='engine "InnoDB"';
SHOW CREATE TABLE bugs;
Table	Create Table
bugs	CREATE TABLE `bugs` (
  `id` int(10) unsigned NOT NULL,
  `tag` varchar(64) DEFAULT NULL COMMENT 'It must consist of only alphabet and number.',
  PRIMARY KEY (`id`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8mb3 COMMENT='engine "InnoDB"'
DROP TABLE bugs;