Commit 94708c0e authored by Robert Haas's avatar Robert Haas

Fix compiler warning.

Mithun Cy, per a report by Erik Rijkers
parent 293e24e5
...@@ -1220,7 +1220,7 @@ _hash_getcachedmetap(Relation rel, Buffer *metabuf, bool force_refresh) ...@@ -1220,7 +1220,7 @@ _hash_getcachedmetap(Relation rel, Buffer *metabuf, bool force_refresh)
Assert(metabuf); Assert(metabuf);
if (force_refresh || rel->rd_amcache == NULL) if (force_refresh || rel->rd_amcache == NULL)
{ {
char *cache; char *cache = NULL;
/* /*
* It's important that we don't set rd_amcache to an invalid * It's important that we don't set rd_amcache to an invalid
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment