8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:40:38 +01:00

Always use single quotes around OS object names (user or group) in SHOW MAPPING output, see #8253

This commit is contained in:
Vlad Khorsun 2024-09-17 00:59:49 +03:00
parent 1e932689cc
commit d519cb6398

View File

@ -5142,7 +5142,7 @@ static void printMap(bool extract, bool global, char* name, char* usng, char* pl
isqlGlob.printf("FROM %s", anyObj ? "ANY " : "");
printIdent(extract, fromType, "%s ");
if (!anyObj)
printIdent(extract, from, "%s ");
isqlGlob.printf("\'%s\' ", from);
isqlGlob.printf("TO %s ", toType ? "ROLE" : "USER");
if (to)