diff options
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r-- | src/bin/psql/describe.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 9b6b9c2cd0a..dad1d5ac0de 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2372,10 +2372,9 @@ add_tablespace_footer(printTableContent *const cont, char relkind, /* Append the tablespace to the latest footer */ printfPQExpBuffer(&buf, "%s", cont->footer->data); - /* - * translator: before this string there's an index - * description like '"foo_pkey" PRIMARY KEY, btree (a)' - */ + /*------- + translator: before this string there's an index description like + '"foo_pkey" PRIMARY KEY, btree (a)' */ appendPQExpBuffer(&buf, _(", tablespace \"%s\""), PQgetvalue(result, 0, 0)); printTableSetFooter(cont, buf.data); |