mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@ -2005,6 +2005,16 @@ create table t2 (n int);
|
||||
insert into t1 set n = (select table_rows from information_schema.tables where table_name='t2');
|
||||
drop table t1, t2;
|
||||
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-24593 Signal 11 when group by primary key of table joined to information_schema.columns
|
||||
--echo #
|
||||
create table t1 (f varchar(64) primary key);
|
||||
select f from information_schema.columns i
|
||||
inner join t1 on f=i.column_name
|
||||
group by f;
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.3 tests
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user