1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

Fix relcache reference leak

Introduced by 83fd4532a72179c370e318075a10e0e2aa832024
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;
}