[Groonga-mysql-commit] mroonga/mroonga at 0b80eb6 [master] mysql8 test: use utf8mb4_unicode_ci as a custom collation

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Jul 20 15:45:20 JST 2018


Kouhei Sutou	2018-07-20 15:45:20 +0900 (Fri, 20 Jul 2018)

  New Revision: 0b80eb619249c50b8e48086d0e990e814e2c85d9
  https://github.com/mroonga/mroonga/commit/0b80eb619249c50b8e48086d0e990e814e2c85d9

  Message:
    mysql8 test: use utf8mb4_unicode_ci as a custom collation

  Modified files:
    mysql-test/mroonga/storage/auto_increment/r/table_param.result
    mysql-test/mroonga/storage/auto_increment/t/table_param.test

  Modified: mysql-test/mroonga/storage/auto_increment/r/table_param.result (+5 -3)
===================================================================
--- mysql-test/mroonga/storage/auto_increment/r/table_param.result    2018-07-20 15:42:56 +0900 (f89b74e5)
+++ mysql-test/mroonga/storage/auto_increment/r/table_param.result    2018-07-20 15:45:20 +0900 (f8500b3c)
@@ -1,5 +1,7 @@
 drop table if exists t1;
-create table t1 (c1 int auto_increment, primary key(c1)) auto_increment=34129;
+create table t1 (
+c1 int auto_increment, primary key(c1)
+) auto_increment=34129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
 insert into t1 values(null);
 select c1 from t1 order by c1 desc;
 c1
@@ -9,7 +11,7 @@ Table	Create Table
 t1	CREATE TABLE `t1` (
   `c1` int(11) NOT NULL AUTO_INCREMENT,
   PRIMARY KEY (`c1`)
-) ENGINE=Mroonga AUTO_INCREMENT=34130 DEFAULT CHARSET=latin1
+) ENGINE=Mroonga AUTO_INCREMENT=34130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
 insert into t1 values(null);
 select c1 from t1 order by c1 desc;
 c1
@@ -66,5 +68,5 @@ Table	Create Table
 t2	CREATE TABLE `t2` (
   `c1` int(11) NOT NULL AUTO_INCREMENT,
   PRIMARY KEY (`c1`)
-) ENGINE=Mroonga AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
+) ENGINE=Mroonga AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
 drop table t2;

  Modified: mysql-test/mroonga/storage/auto_increment/t/table_param.test (+3 -1)
===================================================================
--- mysql-test/mroonga/storage/auto_increment/t/table_param.test    2018-07-20 15:42:56 +0900 (75e0cfb2)
+++ mysql-test/mroonga/storage/auto_increment/t/table_param.test    2018-07-20 15:45:20 +0900 (233ca33d)
@@ -20,7 +20,9 @@
 drop table if exists t1;
 --enable_warnings
 
-create table t1 (c1 int auto_increment, primary key(c1)) auto_increment=34129;
+create table t1 (
+  c1 int auto_increment, primary key(c1)
+) auto_increment=34129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
 insert into t1 values(null);
 select c1 from t1 order by c1 desc;
 show create table t1;
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20180720/767682f9/attachment-0001.htm 



More information about the Groonga-mysql-commit mailing list
Back to archive index