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;
Relation matviewRel;
Query *dataQuery;
Query *dataQuery = NULL; /* initialized to keep compiler happy */
Query *viewQuery;
Oid tableSpace;
Oid relowner;