diff options
author | Amit Kapila <akapila@postgresql.org> | 2024-07-02 10:28:51 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2024-07-02 10:28:51 +0530 |
commit | a4c87df43a45a407a1f3fd584a7ffb32342628cc (patch) | |
tree | 615e4ae076aaf20c9ebfa993db15f5c18cc3eaa1 | |
parent | 65b71dec2d577e9ef7423773a88fdd075f3eb97f (diff) | |
download | postgresql-a4c87df43a45a407a1f3fd584a7ffb32342628cc.tar.gz postgresql-a4c87df43a45a407a1f3fd584a7ffb32342628cc.zip |
Remove unused structure member in pg_createsubscriber.c.
Author: Kuroda Hayato
Backpatch-through: 17
Discussion: https://postgr.es/m/OSBPR01MB25526A30A1FBF863ACCDDA3AF5C92@OSBPR01MB2552.jpnprd01.prod.outlook.com
-rw-r--r-- | src/bin/pg_basebackup/pg_createsubscriber.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_createsubscriber.c b/src/bin/pg_basebackup/pg_createsubscriber.c index fecf5db3653..fb57737f7cd 100644 --- a/src/bin/pg_basebackup/pg_createsubscriber.c +++ b/src/bin/pg_basebackup/pg_createsubscriber.c @@ -48,7 +48,6 @@ struct CreateSubscriberOptions struct LogicalRepInfo { - Oid oid; /* database OID */ char *dbname; /* database name */ char *pubconninfo; /* publisher connection string */ char *subconninfo; /* subscriber connection string */ |