diff options
| author | Simon Riggs | 2014-03-09 09:05:16 +0000 |
|---|---|---|
| committer | Simon Riggs | 2014-03-09 09:05:16 +0000 |
| commit | 77049443a1794bc5222aabb051476367fe347202 (patch) | |
| tree | 9d8ba434adf6c62e66884cbd9fc67e3f6f06610a | |
| parent | 19026aadd82a18f86252415c9d2adeeaa1377b7d (diff) | |
Correct copy/pasto in comment for REPLICA IDENTITY
| -rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 17bb846165..4001f3f396 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -13773,7 +13773,7 @@ dumpIndex(Archive *fout, IndxInfo *indxinfo) fmtId(indxinfo->dobj.name)); } - /* If the index is clustered, we need to record that. */ + /* If the index defines identity, we need to record that. */ if (indxinfo->indisreplident) { appendPQExpBuffer(q, "\nALTER TABLE ONLY %s REPLICA IDENTITY USING", |
