From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- .../suite/sysschema/r/fn_quote_identifier.result | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mysql-test/suite/sysschema/r/fn_quote_identifier.result (limited to 'mysql-test/suite/sysschema/r/fn_quote_identifier.result') 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` -- cgit v1.2.3