1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge branch '10.4' into 10.5

This commit is contained in:
Oleksandr Byelkin
2023-11-08 12:59:00 +01:00
396 changed files with 10324 additions and 5797 deletions

View File

@ -5272,5 +5272,17 @@ SELECT GROUP_CONCAT( UpdateXML( '<a>new year</a>', '/a', '2019-01-01 00:00:00' )
f
2019-01-01 00:00:00F}^i
#
# MDEV-31184 Remove parser tokens DECODE_MARIADB_SYM and DECODE_ORACLE_SYM
#
SELECT DECODE();
ERROR 42000: Incorrect parameter count in the call to native function 'DECODE'
SELECT DECODE(NULL);
ERROR 42000: Incorrect parameter count in the call to native function 'DECODE'
SELECT DECODE(NULL,NULL);
DECODE(NULL,NULL)
NULL
SELECT DECODE(NULL, NULL, NULL);
ERROR 42000: Incorrect parameter count in the call to native function 'DECODE'
#
# End of 10.4 tests
#