doc/md: update schema-indexes doc (#2914)

Co-authored-by: Thuấn Đỗ Hoàng <thuan.dh@teko.vn>
This commit is contained in:
thuan1412
2022-09-08 21:57:34 +07:00
committed by GitHub
parent 82ee525676
commit 29aa179c67

View File

@@ -258,6 +258,9 @@ CREATE FULLTEXT INDEX `users_c5` ON `users` (`c5`)
-- PostgreSQL only.
CREATE INDEX `users_c5` ON `users` USING GIN (`c5`)
-- include index-only scan on PostgreSQL.
CREATE INDEX `users_workplace` ON `users` USING (`workplace`) INCLUDE (address)
```