Suppress "variable may be used uninitialized" warning.

Also re-pgindent, just because I'm a neatnik.
This commit is contained in:
Tom Lane 2015-07-28 19:55:59 -04:00
parent 344703bcc4
commit cab23771eb

View File

@ -656,7 +656,7 @@ AlterPolicy(AlterPolicyStmt *stmt)
Oid policy_id; Oid policy_id;
Relation target_table; Relation target_table;
Oid table_id; Oid table_id;
Datum *role_oids; Datum *role_oids = NULL;
int nitems = 0; int nitems = 0;
ArrayType *role_ids = NULL; ArrayType *role_ids = NULL;
List *qual_parse_rtable = NIL; List *qual_parse_rtable = NIL;