Fix relcache reference leak

Introduced by 83fd4532a7
This commit is contained in:
Peter Eisentraut 2020-04-11 09:44:14 +02:00
parent 8a47b775a1
commit 5a1d0c9925

View file

@ -398,9 +398,9 @@ GetAllTablesPublicationRelations(bool pubviaroot)
}
table_endscan(scan);
table_close(classRel, AccessShareLock);
}
table_close(classRel, AccessShareLock);
return result;
}