1
0
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:
Alexander Barkov
2024-03-29 13:28:40 +04:00
parent a0cde3648e
commit 283b9285c3
3 changed files with 4 additions and 25 deletions

View File

@ -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;