File tree 3 files changed +8657
-8567
lines changed
3 files changed +8657
-8567
lines changed Original file line number Diff line number Diff line change @@ -2770,6 +2770,18 @@ var (
2770
2770
input : "CREATE DATABASE `somedb` CHARACTER SET binary CHARSET binary COLLATE binary collate binary encryption 'n' encryption 'n'" ,
2771
2771
output : "create database somedb character set binary charset binary collate binary collate binary encryption n encryption n" ,
2772
2772
}, {
2773
+ input : "create table test (pk varchar(255) collate 'utf8_unicode_ci')" ,
2774
+ output : "create table test (\n \t pk varchar(255) collate utf8_unicode_ci\n )" ,
2775
+ }, {
2776
+ input : "create table test (pk varchar(255) collate utf8_unicode_ci)" ,
2777
+ output : "create table test (\n \t pk varchar(255) collate utf8_unicode_ci\n )" ,
2778
+ }, {
2779
+ input : "create table test (pk varchar(255)) collate 'utf8_unicode_ci'" ,
2780
+ output : "create table test (\n \t pk varchar(255)\n ) collate utf8_unicode_ci" ,
2781
+ }, {
2782
+ input : "create table test (pk varchar(255)) collate utf8_unicode_ci" ,
2783
+ output : "create table test (\n \t pk varchar(255)\n ) collate utf8_unicode_ci" ,
2784
+ },{
2773
2785
input : "select * from current" ,
2774
2786
output : "select * from `current`" ,
2775
2787
}, {
You can’t perform that action at this time.
0 commit comments