polardbxengine/mysql-test/suite/jp/r/jp_enum_utf8.result

296 lines
10 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
SET NAMES utf8;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SET character_set_database = utf8;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
Warning 1681 Updating 'character_set_database' is deprecated. It will be made read-only in a future release.
CREATE TABLE `` (`` ENUM('ア','イ','ウ'), INDEX(``)) DEFAULT CHARSET = utf8 engine = innodb;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('あ','い','う'), INDEX(``)) DEFAULT CHARSET = utf8 engine = innodb;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('龔','龖','龗'), INDEX(``)) DEFAULT CHARSET = utf8 engine = innodb;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('ア','イ','ウ'), INDEX(``)) DEFAULT CHARSET = utf8 engine = myisam;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('あ','い','う'), INDEX(``)) DEFAULT CHARSET = utf8 engine = myisam;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('龔','龖','龗'), INDEX(``)) DEFAULT CHARSET = utf8 engine = myisam;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('ア','イ','ウ'), INDEX(``)) DEFAULT CHARSET = utf8 engine = MEMORY;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('あ','い','う'), INDEX(``)) DEFAULT CHARSET = utf8 engine = MEMORY;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE `` (`` ENUM('龔','龖','龗'), INDEX(``)) DEFAULT CHARSET = utf8 engine = MEMORY;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
INSERT INTO `` VALUES ('ア'),('イ'),('ウ');
INSERT INTO `` VALUES ('あ'),('い'),('う');
INSERT INTO `` VALUES ('龔'),('龖'),('龗');
INSERT INTO `` VALUES ('ア'),('イ'),('ウ');
INSERT INTO `` VALUES ('あ'),('い'),('う');
INSERT INTO `` VALUES ('龔'),('龖'),('龗');
INSERT INTO `` VALUES ('ア'),('イ'),('ウ');
INSERT INTO `` VALUES ('あ'),('い'),('う');
INSERT INTO `` VALUES ('龔'),('龖'),('龗');
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SELECT * FROM ``;
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('ア','イ','ウ') DEFAULT NULL,
KEY `` (``)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('あ','い','う') DEFAULT NULL,
KEY `` (``)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('龔','龖','龗') DEFAULT NULL,
KEY `` (``)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('ア','イ','ウ') DEFAULT NULL,
KEY `` (``)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('あ','い','う') DEFAULT NULL,
KEY `` (``)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('龔','龖','龗') DEFAULT NULL,
KEY `` (``)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('ア','イ','ウ') DEFAULT NULL,
KEY `` (``)
) ENGINE=MEMORY DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('あ','い','う') DEFAULT NULL,
KEY `` (``)
) ENGINE=MEMORY DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` enum('龔','龖','龗') DEFAULT NULL,
KEY `` (``)
) ENGINE=MEMORY DEFAULT CHARSET=utf8
DESC ``;
Field Type Null Key Default Extra
enum('ア','イ','ウ') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('あ','い','う') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('龔','龖','龗') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('ア','イ','ウ') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('あ','い','う') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('龔','龖','龗') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('ア','イ','ウ') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('あ','い','う') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
enum('龔','龖','龗') YES MUL NULL
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
ALTER TABLE `` ADD `` CHAR(1) NOT NULL FIRST;
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('ア','イ','ウ') DEFAULT NULL,
KEY `` (``)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('あ','い','う') DEFAULT NULL,
KEY `` (``)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('龔','龖','龗') DEFAULT NULL,
KEY `` (``)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('ア','イ','ウ') DEFAULT NULL,
KEY `` (``)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('あ','い','う') DEFAULT NULL,
KEY `` (``)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('龔','龖','龗') DEFAULT NULL,
KEY `` (``)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('ア','イ','ウ') DEFAULT NULL,
KEY `` (``)
) ENGINE=MEMORY DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('あ','い','う') DEFAULT NULL,
KEY `` (``)
) ENGINE=MEMORY DEFAULT CHARSET=utf8
SHOW CREATE TABLE ``;
Table Create Table
CREATE TABLE `` (
`` char(1) NOT NULL,
`` enum('龔','龖','龗') DEFAULT NULL,
KEY `` (``)
) ENGINE=MEMORY DEFAULT CHARSET=utf8
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('ア','イ','ウ') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('あ','い','う') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('龔','龖','龗') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('ア','イ','ウ') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('あ','い','う') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('龔','龖','龗') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('ア','イ','ウ') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('あ','い','う') YES MUL NULL
DESC ``;
Field Type Null Key Default Extra
char(1) NO NULL
enum('龔','龖','龗') YES MUL NULL
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;