summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/sysschema/r/fn_quote_identifier.result
blob: 5d0a496443fabcd406b056ca00beaad50cf1fd6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SELECT sys.quote_identifier(NULL);
sys.quote_identifier(NULL)
NULL
SELECT sys.quote_identifier('abc');
sys.quote_identifier('abc')
`abc`
SELECT sys.quote_identifier('ab`c');
sys.quote_identifier('ab`c')
`ab``c`
SELECT sys.quote_identifier('ab``c');
sys.quote_identifier('ab``c')
`ab````c`
SELECT sys.quote_identifier('ab```c');
sys.quote_identifier('ab```c')
`ab``````c`
SELECT sys.quote_identifier('a`b`c');
sys.quote_identifier('a`b`c')
`a``b``c`
SELECT sys.quote_identifier('a`b``c');
sys.quote_identifier('a`b``c')
`a``b````c`