diff options
Diffstat (limited to 'mysql-test/suite/sysschema/r/fn_quote_identifier.result')
-rw-r--r-- | mysql-test/suite/sysschema/r/fn_quote_identifier.result | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/suite/sysschema/r/fn_quote_identifier.result b/mysql-test/suite/sysschema/r/fn_quote_identifier.result new file mode 100644 index 00000000..5d0a4964 --- /dev/null +++ b/mysql-test/suite/sysschema/r/fn_quote_identifier.result @@ -0,0 +1,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` |