diff --git a/test/sql/collation.result b/test/sql/collation.result index 148a1a15f097a0624653205b985bcc5d0ee0320f..c69510fe702e40f4ae8794b037ebedf8e0d7f823 100644 --- a/test/sql/collation.result +++ b/test/sql/collation.result @@ -261,3 +261,67 @@ box.session.su('admin') box.schema.user.drop('tmp') --- ... +-- gh-3644 Foreign key update fails with "unicode_ci". +-- Check that foreign key update doesn't fail with "unicode_ci". +box.sql.execute('CREATE TABLE t0 (s1 CHAR(5) COLLATE "unicode_ci" PRIMARY KEY);') +--- +... +box.sql.execute('CREATE TABLE t1 (s1 INT PRIMARY KEY, s0 CHAR(5) COLLATE "unicode_ci" REFERENCES t0(s1));') +--- +... +box.sql.execute("INSERT INTO t0 VALUES ('a');") +--- +... +box.sql.execute("INSERT INTO t1 VALUES (1,'a');") +--- +... +-- Should't fail. +box.sql.execute("UPDATE t0 SET s1 = 'A';") +--- +... +box.sql.execute("SELECT * FROM t0;") +--- +- - ['A'] +... +box.sql.execute("SELECT * FROM t1;") +--- +- - [1, 'a'] +... +box.sql.execute("DROP TABLE t1;") +--- +... +box.sql.execute("DROP TABLE t0;") +--- +... +-- Check that foreign key update fails with default collation. +box.sql.execute('CREATE TABLE t0 (s1 CHAR(5) PRIMARY KEY);') +--- +... +box.sql.execute('CREATE TABLE t1 (s1 INT PRIMARY KEY, s0 CHAR(5) REFERENCES t0(s1));') +--- +... +box.sql.execute("INSERT INTO t0 VALUES ('a');") +--- +... +box.sql.execute("INSERT INTO t1 VALUES (1,'a');") +--- +... +-- Should fail. +box.sql.execute("UPDATE t0 SET s1 = 'A';") +--- +- error: FOREIGN KEY constraint failed +... +box.sql.execute("SELECT * FROM t1;") +--- +- - [1, 'a'] +... +box.sql.execute("SELECT * FROM t0;") +--- +- - ['a'] +... +box.sql.execute("DROP TABLE t1;") +--- +... +box.sql.execute("DROP TABLE t0;") +--- +... diff --git a/test/sql/collation.test.lua b/test/sql/collation.test.lua index ade3a699e3a34710bcaacd09b144204d35d17d4e..4ad2d5e50cde0e80f9d2fee1574fe2fc59cdb31b 100644 --- a/test/sql/collation.test.lua +++ b/test/sql/collation.test.lua @@ -102,3 +102,27 @@ box.session.su('tmp') box.sql.execute("pragma collation_list") box.session.su('admin') box.schema.user.drop('tmp') + +-- gh-3644 Foreign key update fails with "unicode_ci". +-- Check that foreign key update doesn't fail with "unicode_ci". +box.sql.execute('CREATE TABLE t0 (s1 CHAR(5) COLLATE "unicode_ci" PRIMARY KEY);') +box.sql.execute('CREATE TABLE t1 (s1 INT PRIMARY KEY, s0 CHAR(5) COLLATE "unicode_ci" REFERENCES t0(s1));') +box.sql.execute("INSERT INTO t0 VALUES ('a');") +box.sql.execute("INSERT INTO t1 VALUES (1,'a');") +-- Should't fail. +box.sql.execute("UPDATE t0 SET s1 = 'A';") +box.sql.execute("SELECT * FROM t0;") +box.sql.execute("SELECT * FROM t1;") +box.sql.execute("DROP TABLE t1;") +box.sql.execute("DROP TABLE t0;") +-- Check that foreign key update fails with default collation. +box.sql.execute('CREATE TABLE t0 (s1 CHAR(5) PRIMARY KEY);') +box.sql.execute('CREATE TABLE t1 (s1 INT PRIMARY KEY, s0 CHAR(5) REFERENCES t0(s1));') +box.sql.execute("INSERT INTO t0 VALUES ('a');") +box.sql.execute("INSERT INTO t1 VALUES (1,'a');") +-- Should fail. +box.sql.execute("UPDATE t0 SET s1 = 'A';") +box.sql.execute("SELECT * FROM t1;") +box.sql.execute("SELECT * FROM t0;") +box.sql.execute("DROP TABLE t1;") +box.sql.execute("DROP TABLE t0;")