Postgresql – Can partitioning be used for LIKE queries in Postgres?
I have huge words table which I'm running LIKE query on: create table words ( id int, word varchar ) It works pretty long. Index doesn't help a lot, so I'm trying to partition it by word column: create table…