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.

Comments

papajo created an issue. See original summary.

papajo’s picture

StatusFileSize
new724 bytes

Here is a patch to use "LIKE BINARY" instead of "LIKE" for PostgreSQL.