Commit 5a922f13 authored by Itagaki Takahiro's avatar Itagaki Takahiro

Make the second words lowercase in psql's \d titles for unlogged tables.

parent bdca82f4
......@@ -1297,7 +1297,7 @@ describeOneTableDetails(const char *schemaname,
{
case 'r':
if (tableinfo.relpersistence == 'u')
printfPQExpBuffer(&title, _("Unlogged Table \"%s.%s\""),
printfPQExpBuffer(&title, _("Unlogged table \"%s.%s\""),
schemaname, relationname);
else
printfPQExpBuffer(&title, _("Table \"%s.%s\""),
......@@ -1313,7 +1313,7 @@ describeOneTableDetails(const char *schemaname,
break;
case 'i':
if (tableinfo.relpersistence == 'u')
printfPQExpBuffer(&title, _("Unlogged Index \"%s.%s\""),
printfPQExpBuffer(&title, _("Unlogged index \"%s.%s\""),
schemaname, relationname);
else
printfPQExpBuffer(&title, _("Index \"%s.%s\""),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment