Problem/Motivation
The PostgreSQL driver map LIKE operator with "ILIKE". This behavior could cause performance issues.
Proposed resolution
It would be better to use "LIKE BINARY" operator to generate condition for tag_ids for PostgreSQL.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | postgresql-performance-issues-3231303-2.patch | 724 bytes | papajo |
Comments
Comment #2
papajo commentedHere is a patch to use "LIKE BINARY" instead of "LIKE" for PostgreSQL.