1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00

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;
}