Fix compiler warning in ExecRefreshImmv

This commit is contained in:
Marco Slot 2022-07-28 18:05:39 +02:00
parent 6439e8c7be
commit 046b323ce5

View file

@ -223,7 +223,7 @@ ExecRefreshImmv(const RangeVar *relation, bool skipData,
{ {
Oid matviewOid; Oid matviewOid;
Relation matviewRel; Relation matviewRel;
Query *dataQuery; Query *dataQuery = NULL; /* initialized to keep compiler happy */
Query *viewQuery; Query *viewQuery;
Oid tableSpace; Oid tableSpace;
Oid relowner; Oid relowner;