mirror of
https://github.com/postgres/postgres.git
synced 2025-12-10 14:22:35 +03:00
pgindent run for 9.0
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.55 2010/02/17 04:19:40 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.56 2010/02/26 02:01:19 momjian Exp $
|
||||
*/
|
||||
#include "postgres_fe.h"
|
||||
#include "large_obj.h"
|
||||
@@ -283,7 +283,7 @@ do_lo_list(void)
|
||||
snprintf(buf, sizeof(buf),
|
||||
"SELECT oid as \"%s\",\n"
|
||||
" pg_catalog.pg_get_userbyid(lomowner) as \"%s\",\n"
|
||||
" pg_catalog.obj_description(oid, 'pg_largeobject') as \"%s\"\n"
|
||||
" pg_catalog.obj_description(oid, 'pg_largeobject') as \"%s\"\n"
|
||||
" FROM pg_catalog.pg_largeobject_metadata "
|
||||
" ORDER BY oid",
|
||||
gettext_noop("ID"),
|
||||
@@ -294,8 +294,8 @@ do_lo_list(void)
|
||||
{
|
||||
snprintf(buf, sizeof(buf),
|
||||
"SELECT loid as \"%s\",\n"
|
||||
" pg_catalog.obj_description(loid, 'pg_largeobject') as \"%s\"\n"
|
||||
"FROM (SELECT DISTINCT loid FROM pg_catalog.pg_largeobject) x\n"
|
||||
" pg_catalog.obj_description(loid, 'pg_largeobject') as \"%s\"\n"
|
||||
"FROM (SELECT DISTINCT loid FROM pg_catalog.pg_largeobject) x\n"
|
||||
"ORDER BY 1",
|
||||
gettext_noop("ID"),
|
||||
gettext_noop("Description"));
|
||||
|
||||
Reference in New Issue
Block a user