1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge 10.5 into 10.6

This commit is contained in:
Marko Mäkelä
2024-11-29 12:37:46 +02:00
246 changed files with 2643 additions and 1635 deletions

View File

@@ -2376,6 +2376,13 @@ DROP TABLE t1;
DO OCT(-9223372036854775808);
--echo #
--echo # MDEV-28652 SUBSTRING(str,pos,len) returns incorrect result in view (returns an empty string)
--echo #
create view v1 as select substring('hello', 1, 4294967295);
select * from v1;
drop view v1;
--echo #
--echo # End of 10.5 tests