File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.31 2001/05/09 17:57:42 momjian Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.32 2001/05/27 21:50:50 petere Exp $
7
7
*/
8
8
#include "postgres_fe.h"
9
9
#include "describe.h"
@@ -925,14 +925,14 @@ describeUsers (const char *name)
925
925
headers [cols ] = NULL ;
926
926
927
927
strcpy (buf ,
928
- "SELECT u.usename AS \"User Name\"\n
929
- , u .usesysid AS \"User ID\"\n
930
- , u .usesuper AS \"Super User\"\n
931
- , u .usecreatedb AS \"Create DB\"\n
932
- FROM pg_user u \n ");
928
+ "SELECT u.usename AS \"User Name\",\n"
929
+ " u.usesysid AS \"User ID\",\n"
930
+ " u.usesuper AS \"Super User\",\n"
931
+ " u.usecreatedb AS \"Create DB\"\n"
932
+ " FROM pg_user u\n" );
933
933
if (name )
934
934
{
935
- strcat (buf , " WHERE u.usename ~ '^" );
935
+ strcat (buf , "WHERE u.usename ~ '^" );
936
936
strncat (buf , name , REGEXP_CUTOFF );
937
937
strcat (buf , "'\n" );
938
938
}
You can’t perform that action at this time.
0 commit comments