diff options
author | Alvaro Herrera | 2020-09-02 00:43:23 +0000 |
---|---|---|
committer | Alvaro Herrera | 2020-09-02 00:43:23 +0000 |
commit | 05c16b827f3ae66ec718e9af49e4d96906fa2ffb (patch) | |
tree | f9d1b0446d35ed9d35af106f6544588d96126083 | |
parent | 1d65416661bbb0b165865a521ce038ffb61b12ad (diff) |
Fix typo in comment
Introduced by 8b08f7d4820f; backpatch to 11.
Discussion: https://postgr.es/m/[email protected]
-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 da97b731b1..2f051b83d9 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -368,7 +368,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: */ |