From 7b3d0f25954c2d1b188be12ad8a3365313bda8a1 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 3 May 2021 16:53:25 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21aa980..19554c0 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ COMMIT; ### Partial Indexes -Use [partial indexes](https://www.postgresql.org/docs/current/indexes-partial.html) to speed up queries with a `WHERE` clause +Consider [partial indexes](https://www.postgresql.org/docs/current/indexes-partial.html) for queries with a `WHERE` clause ```sql CREATE INDEX ON table USING ivfflat (column) WHERE (condition = true);