1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Removing MDEV-27871 because it is not a bug

Part 1
This commit is contained in:
Oleksandr Byelkin
2023-10-13 11:15:14 +02:00
parent c03cb73ab9
commit d594f1e531
72 changed files with 2517 additions and 2803 deletions

View File

@ -57,15 +57,10 @@ select 'a' union select concat('a', -0.0000);
# Bug#16716: subselect in concat() may lead to a wrong result
#
#enable after fix MDEV-27871
--disable_view_protocol
select concat((select x from (select 'a' as x) as t1 ),
(select y from (select 'b' as y) as t2 )) from (select 1 union select 2 )
(select y from (select 'b' as y) as t2 )) as exp from (select 1 union select 2 )
as t3;
--enable_view_protocol
# End of 4.1 tests
#