summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/column_comment_normal_not_for_mroonga.result
blob: 01c4f64f439bac5bf7b39d22cfe1b0d656505bc0 (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;
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 COLLATE=utf8mb3_general_ci
DROP TABLE bugs;