Merge pull request #19 from marcocitus/marcocitus/fix-compile-warning
Fix gcc warning in ExecRefreshImmv
This commit is contained in:
commit
52895572ac
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue