mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Fix typo in logical truncate replication
This could result in some misbehavior in a cascading replication setup.
This commit is contained in:
@ -932,7 +932,7 @@ apply_handle_truncate(StringInfo s)
|
||||
rels = lappend(rels, rel->localrel);
|
||||
relids = lappend_oid(relids, rel->localreloid);
|
||||
if (RelationIsLogicallyLogged(rel->localrel))
|
||||
relids_logged = lappend_oid(relids, rel->localreloid);
|
||||
relids_logged = lappend_oid(relids_logged, rel->localreloid);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user