Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5a922f1

Browse files
committed
Make the second words lowercase in psql's \d titles for unlogged tables.
1 parent bdca82f commit 5a922f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/describe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1297,7 +1297,7 @@ describeOneTableDetails(const char *schemaname,
12971297
{
12981298
case 'r':
12991299
if (tableinfo.relpersistence == 'u')
1300-
printfPQExpBuffer(&title, _("Unlogged Table \"%s.%s\""),
1300+
printfPQExpBuffer(&title, _("Unlogged table \"%s.%s\""),
13011301
schemaname, relationname);
13021302
else
13031303
printfPQExpBuffer(&title, _("Table \"%s.%s\""),
@@ -1313,7 +1313,7 @@ describeOneTableDetails(const char *schemaname,
13131313
break;
13141314
case 'i':
13151315
if (tableinfo.relpersistence == 'u')
1316-
printfPQExpBuffer(&title, _("Unlogged Index \"%s.%s\""),
1316+
printfPQExpBuffer(&title, _("Unlogged index \"%s.%s\""),
13171317
schemaname, relationname);
13181318
else
13191319
printfPQExpBuffer(&title, _("Index \"%s.%s\""),

0 commit comments

Comments
 (0)