Actions
Bug #37534
closedFiltering repositories on RH Repos page gives incorrect results
Description
On the Red Hat Repositories page, searching for a keyword only (without field names) does a preliminary SQL query to the katello_contents table:
SELECT "katello_contents"."cp_content_id" FROM "katello_contents" WHERE (label = 'coreservices')
The problem here is that the operator being used is =, which only matches exact results. Instead we should use the ~ operator.
Updated by The Foreman Bot 6 months ago
- Status changed from New to Ready For Testing
- Assignee set to Jeremy Lenz
- Pull request https://github.com/Katello/katello/pull/11015 added
Updated by Jeremy Lenz 5 months ago
- Status changed from Ready For Testing to Closed
Applied in changeset katello|80a1d01cdef8511f46756d7a602efa36f89d649f.
Actions