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 | fcc42756818cef68e61e35e6d71cac6a73e24bb9 (patch) | |
tree | 82aa1e443c971854b6a71dbf44843080b65c9afd /src | |
parent | e3646325f4b6ca78c0a4234bf978cfda53721e4d (diff) | |
download | postgresql-fcc42756818cef68e61e35e6d71cac6a73e24bb9.tar.gz postgresql-fcc42756818cef68e61e35e6d71cac6a73e24bb9.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 c899f1bc49f..b126f8bda02 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -371,7 +371,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 */ SimplePtrList partattaches; /* if partitioned, partition attach objects */ /* if there is an associated constraint object, its dumpId: */ |