mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
A fix (bug #6564: QUOTE(NULL) returns NULL, not the string 'NULL')
This commit is contained in:
parent
ce62fb28c0
commit
baf1c89e3d
3 changed files with 21 additions and 4 deletions
|
|
@ -69,6 +69,12 @@ select quote(1/0), quote('\0\Z');
|
|||
select length(quote(concat(char(0),"test")));
|
||||
select hex(quote(concat(char(224),char(227),char(230),char(231),char(232),char(234),char(235))));
|
||||
|
||||
#
|
||||
# Bug #6564: QUOTE(NULL
|
||||
#
|
||||
|
||||
select concat('a', quote(NULL));
|
||||
|
||||
#
|
||||
# Wrong usage of functions
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue