Updated readme [skip ci]

This commit is contained in:
Andrew Kane
2021-05-03 16:53:25 -07:00
parent 099b9e9027
commit 7b3d0f2595

View File

@@ -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);