diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-09-01 20:43:23 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-09-01 20:43:23 -0400 |
commit | 70ccff88d910f57e427331afcbd6322ff7c80d18 (patch) | |
tree | 33b16764d04296ef05944c76b2cf1e1bb362c14d /src | |
parent | 1fa1f2c39e49d82b1ecbaefc3d8a8e73983ec3d4 (diff) | |
download | postgresql-70ccff88d910f57e427331afcbd6322ff7c80d18.tar.gz postgresql-70ccff88d910f57e427331afcbd6322ff7c80d18.zip |
Fix typo in comment
Introduced by 8b08f7d4820f; backpatch to 11.
Discussion: https://postgr.es/m/20200812214918.GA30353@alvherre.pgsql
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index f9d88cf8989..6482f495271 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -370,7 +370,7 @@ typedef struct _indxInfo * contains both key and nonkey attributes */ bool indisclustered; bool indisreplident; - Oid parentidx; /* if partitioned, parent index OID */ + Oid parentidx; /* if a partition, parent index OID */ /* if there is an associated constraint object, its dumpId: */ DumpId indexconstraint; int relpages; /* relpages of the underlying table */ |