提交 5a922f13 编写于 作者: I Itagaki Takahiro

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

上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册