You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Avoid calls to RelationGetRelationName() and RelationGetNamespace() in
vacuum code.After commitb61d161, during vacuum, we cache the information ofrelation name and relation namespace in local structure LVRelStats so thatwe can use it in an error callback function. We can use the cachedinformation to avoid the calls to RelationGetRelationName(),RelationGetNamespace() and get_namespace_name(). This is mainly for theconsistent in vacuum code path but it will avoid the extra syscache lookupwe do in get_namespace_name().Author: Justin PryzbyReviewed-by: Amit KapilaDiscussion:https://www.postgresql.org/message-id/20191120210600.GC30362@telsasoft.com