Restored section on partial indexes [skip ci]

This commit is contained in:
Andrew Kane
2021-06-17 14:05:48 -07:00
parent 478d62cdbd
commit b5b7035edc

View File

@@ -106,6 +106,14 @@ SELECT ...
COMMIT;
```
### Partial Indexes
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 (other_column = 123);
```
## Reference
### Vector Type