Skip to content

Commit d519cb6

Browse files
committed
Always use single quotes around OS object names (user or group) in SHOW MAPPING output, see #8253
1 parent 1e93268 commit d519cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/isql/show.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5142,7 +5142,7 @@ static void printMap(bool extract, bool global, char* name, char* usng, char* pl
51425142
isqlGlob.printf("FROM %s", anyObj ? "ANY " : "");
51435143
printIdent(extract, fromType, "%s ");
51445144
if (!anyObj)
5145-
printIdent(extract, from, "%s ");
5145+
isqlGlob.printf("\'%s\' ", from);
51465146

51475147
isqlGlob.printf("TO %s ", toType ? "ROLE" : "USER");
51485148
if (to)

0 commit comments

Comments
 (0)