Updated example [skip ci]

This commit is contained in:
Andrew Kane
2022-07-31 22:34:03 -07:00
parent 0a68b040fb
commit 2e77650e1d

View File

@@ -130,6 +130,12 @@ Note: `tuples_done` and `tuples_total` are only populated during the `loading tu
Consider [partial indexes](https://www.postgresql.org/docs/current/indexes-partial.html) for queries with a `WHERE` clause
```sql
SELECT * FROM table WHERE other_column = 123 ORDER BY column <-> '[3,1,2]' LIMIT 5;
```
can be indexed with:
```sql
CREATE INDEX ON table USING ivfflat (column opclass) WHERE (other_column = 123);
```