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

test case for the QUOTE() function

This commit is contained in:
unknown
2002-08-09 17:58:30 +05:00
parent 66eb6db755
commit 726ca26b8c
2 changed files with 9 additions and 0 deletions

View File

@ -61,6 +61,9 @@ select least(1,2,3) | greatest(16,32,8), least(5,4)*1,greatest(-1.0,1.0)*1,least
select decode(encode(repeat("a",100000),"monty"),"monty")=repeat("a",100000);
select decode(encode("abcdef","monty"),"monty")="abcdef";
select quote('\'\"\\test');
select quote(concat('abc\'', '\\cba'));
#
# Wrong usage of functions
#