We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent16620ab commit6124c67Copy full SHA for 6124c67
src/backend/commands/user.c
@@ -6,7 +6,7 @@
6
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7
* Portions Copyright (c) 1994, Regents of the University of California
8
*
9
- * $Id: user.c,v 1.49 2000/01/26 05:56:13 momjian Exp $
+ * $Id: user.c,v 1.50 2000/02/15 18:17:33 tgl Exp $
10
11
*-------------------------------------------------------------------------
12
*/
@@ -855,6 +855,7 @@ AlterGroup(AlterGroupStmt *stmt, const char * tag)
855
foreach(item,stmt->listUsers)
856
{
857
Value*v;
858
+
859
if (strcmp(tag,"ALTER GROUP")==0)
860
861
/* Get the uid of the proposed user to add. */
@@ -875,7 +876,10 @@ AlterGroup(AlterGroupStmt *stmt, const char * tag)
875
876
v=lfirst(item);
877
}
878
else
879
+{
880
elog(ERROR,"AlterGroup: unknown tag %s",tag);
881
+v=NULL;/* keep compiler quiet */
882
+}
883
884
if (!member(v,newlist))
885
newlist=lcons(v,newlist);