We noticed that domains of the kind ['OR, ('a', '=', x), ('b.f1', '=', y)] that result in an expression of the kind t.a = x OR t.id in (subquery) could be more optimal if we used an UNION of the two queries (because postgres can sometimes use an index but in my test even without indexes it's a bit more optimal).
The review implements this on Model.search.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
...
Show closed items
Linked items
0
Link issues together to show that they're related.
Learn more.
I'd advice to check performane in upcoming Postgres 14. It introduces some
optimizations which may make the patch unnecessary. The ones I remember
improved NOT IN queries but may be worth checking.
I see nothing which could suggest that the planner would perform better under PostgreSQL 14.
But even if the database could optimize such OR-ed queries with indexes, I can not see how converting the query into UNION would degrade the performance. The database would style optimize the query by using the same indexes.
I noticed a regression introduced with this change.
If we search on a domain such as the UNION is triggered, with a sort on a Reference field of the main table, the query fails. This is because __searched_column ignores Reference fields (because they are lazy-loaded by default).
This was not a problem before because even though the column was not in the searched columns, it always existed on the table, so a sort on the column did not cause any issue.
This is not specific to Reference fields, but may happen as soon as a search on a domain that triggers the UNION sorts on a lazy-loaded field.