mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-33701 upgrades from 11.4 to 11.5 don't work
A user variable and a literal with different collation produce an illegal mix of collation error. Rewriting the script to avoid such arguments.
This commit is contained in:
@ -429,7 +429,7 @@ create table t2 as select json_object('foo', json_unquote(json_object('bar', c))
|
||||
show create table t2;
|
||||
Table Create Table
|
||||
t2 CREATE TABLE `t2` (
|
||||
`fld` varchar(39) DEFAULT NULL
|
||||
`fld` varchar(110) DEFAULT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
||||
drop table t2;
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user