diff options
author | Amit Kapila | 2025-03-18 08:36:51 +0000 |
---|---|---|
committer | Amit Kapila | 2025-03-18 08:36:51 +0000 |
commit | 01e27aab05f5f83ab4b79688795848d787dab738 (patch) | |
tree | 1a76eb6e029a84281a160349fd837603455bda2d /src/include/commands | |
parent | c462b054ba605d23c1ec139fcca3d758ac139026 (diff) |
Use correct variable name in publicationcmds.c.
subid was used at few places for publicationid in publicationcmds.c/.h.
Author: vignesh C <[email protected]>
Reviewed-by: Ashutosh Bapat <[email protected]>
Discussion: https://postgr.es/m/CALDaNm1KqJ0VFfDJRPbfYi9Shz6LHFEE-Ckn+eqsePfKhebv9w@mail.gmail.com
Diffstat (limited to 'src/include/commands')
-rw-r--r-- | src/include/commands/publicationcmds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/commands/publicationcmds.h b/src/include/commands/publicationcmds.h index e41df6db038..f90cf1ef896 100644 --- a/src/include/commands/publicationcmds.h +++ b/src/include/commands/publicationcmds.h @@ -29,7 +29,7 @@ extern void RemovePublicationRelById(Oid proid); extern void RemovePublicationSchemaById(Oid psoid); extern ObjectAddress AlterPublicationOwner(const char *name, Oid newOwnerId); -extern void AlterPublicationOwner_oid(Oid subid, Oid newOwnerId); +extern void AlterPublicationOwner_oid(Oid pubid, Oid newOwnerId); extern void InvalidatePublicationRels(List *relids); extern bool pub_rf_contains_invalid_column(Oid pubid, Relation relation, List *ancestors, bool pubviaroot); |