From ba9367f86ca177d93680a8caa024bc8b6ff2640d Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 30 Oct 2024 12:58:00 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e36751..be19df9 100644 --- a/README.md +++ b/README.md @@ -324,7 +324,7 @@ For a large number of workers, you may also need to increase `max_parallel_worke ### Indexing Progress -Check [indexing progress](https://www.postgresql.org/docs/current/progress-reporting.html#CREATE-INDEX-PROGRESS-REPORTING) with Postgres 12+ +Check [indexing progress](https://www.postgresql.org/docs/current/progress-reporting.html#CREATE-INDEX-PROGRESS-REPORTING) ```sql SELECT phase, round(100.0 * blocks_done / nullif(blocks_total, 0), 1) AS "%" FROM pg_stat_progress_create_index; @@ -410,7 +410,7 @@ For a large number of workers, you may also need to increase `max_parallel_worke ### Indexing Progress -Check [indexing progress](https://www.postgresql.org/docs/current/progress-reporting.html#CREATE-INDEX-PROGRESS-REPORTING) with Postgres 12+ +Check [indexing progress](https://www.postgresql.org/docs/current/progress-reporting.html#CREATE-INDEX-PROGRESS-REPORTING) ```sql SELECT phase, round(100.0 * tuples_done / nullif(tuples_total, 0), 1) AS "%" FROM pg_stat_progress_create_index;