point towards how to avoid index corruption (#893)

added links to the SQL `REINDEX` and CLI `reindexdb` commands
This commit is contained in:
Bryce "BonzoESC" Kerley 2021-08-29 12:00:20 -04:00 committed by GitHub
parent 599fd67b1e
commit 55c284295f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -90,3 +90,8 @@ The tool will walk through the database to find duplicate and fix them. In some
## Avoiding the issue
To avoid the issue, reindex your database immediately after any libc update.
The
[SQL command `REINDEX`](https://www.postgresql.org/docs/current/sql-reindex.html)
or the
[`reindexdb` command-line tool](https://www.postgresql.org/docs/current/app-reindexdb.html)
may be useful for this.