1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-27 22:56:53 +03:00

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 d824e2800f
commit 2c698f438a

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;