Added note on partitioning [skip ci]

This commit is contained in:
Andrew Kane
2021-06-17 14:20:43 -07:00
parent b5b7035edc
commit cfa23f2c7a

View File

@@ -114,6 +114,8 @@ Consider [partial indexes](https://www.postgresql.org/docs/current/indexes-parti
CREATE INDEX ON table USING ivfflat (column) WHERE (other_column = 123);
```
To index many different values of `other_column`, consider [partitioning](https://www.postgresql.org/docs/current/ddl-partitioning.html) on `other_column`.
## Reference
### Vector Type