diff options
author | Itagaki Takahiro | 2011-02-23 00:54:32 +0000 |
---|---|---|
committer | Itagaki Takahiro | 2011-02-23 00:58:00 +0000 |
commit | 5a922f13eff66b3e437e823419d48d509d59a6be (patch) | |
tree | ac2a23c39fcf25b5c28947f40817ddf0b287f208 /src | |
parent | bdca82f44d0e0168dece56cbd53b54ba142f328f (diff) |
Make the second words lowercase in psql's \d titles for unlogged tables.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/describe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 94396b19106..9dc02a1e3dd 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -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\""), |