We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e9a02 commit eda4d8aCopy full SHA for eda4d8a
src/backend/access/heap/ptrack.c
@@ -277,13 +277,15 @@ ptrack_get_and_clear(Oid tablespace_oid, Oid table_oid)
277
{
278
bytea *result = NULL;
279
BlockNumber nblock;
280
+ Relation rel;
281
+
282
if (table_oid == InvalidOid)
283
284
elog(WARNING, "InvalidOid");
285
goto full_end;
286
}
- Relation rel = RelationIdGetRelation(RelidByRelfilenode(tablespace_oid,
- table_oid));
287
288
+ rel = RelationIdGetRelation(RelidByRelfilenode(tablespace_oid, table_oid));
289
290
if (rel == InvalidRelation)
291
0 commit comments