Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionAshfaqur Rahaman
2016-12-08 00:08:56 UTC
Description of problem:
Dashboard is showing SQL error if we select '~' like option in User role "Host" filter.
Version-Release number of selected component (if applicable):
Satellite 6.2.4
How reproducible:
100%
Steps to Reproduce:
- Configure a Host Collection (lets call it 'Test Hostcollection 1')
- Add at least one host to 'Test Hostcollection 1'
- Create role "MyRole1" with below filters:
1. Miscellaneous: access_dashboard, access_settings, view_plugins, view_statistics, view_tasks
Filter : None
2. Activation Keys : view_activation_keys
Filter: name ~ ak_capsule_provision
3. Content Host : edit_content_hosts, view_content_hosts,
Filter: host_collection ~ "Test Hostcollection 1"
4. Fact value: view_facts
Filter: none
5. Host : edit_hosts, build_hosts, view_hosts
Filter: host_collection ~ "Test Hostcollection 1"
6. Organization : view_organizations, view_subscriptions
Filter : none
7. Product and Repositories: view_products
Filter: none
- Create a user myUser1
- Assign the role myRole to myUser1
- Login as myUser1 and open the dashboard
Actual results:
It gives the below error in dashboard :
----
PG::Error: ERROR: missing FROM-clause entry for table "katello_host_collections"
LINE 1:
...id" IN (1) AND "hosts"."location_id" IN (2) AND (("katello_h... ^ :
SELECT COUNT(count_column)
FROM
(SELECT 1 AS count_column FROM "katello_errata"
INNER JOIN "katello_content_facet_errata" ON "katello_content_facet_errata"."erratum_id" = "katello_errata"."id"
INNER JOIN "katello_content_facets" ON "katello_content_facets"."id" = "katello_content_facet_errata"."content_facet_id"
WHERE "katello_content_facets"."host_id" IN
(SELECT "hosts"."id" FROM "hosts" WHERE "hosts"."type"
IN ('Host::Managed') AND "hosts"."organization_id"
IN (1) AND "hosts"."location_id" IN (2) AND (("katello_host_collections"."name" ILIKE '%Test Hostcollection 1%'))) LIMIT 6)
subquery_for_count
----
Expected results:
It should show the dashboard
Additional info:
There is a work around for this. In step 5, if we use '=' instead of '~' in "Host" filter, it works.
---
5. Host : edit_hosts, build_hosts, view_hosts
Filter: host_collection = "Test Hostcollection 1"
---
Description of problem: Dashboard is showing SQL error if we select '~' like option in User role "Host" filter. Version-Release number of selected component (if applicable): Satellite 6.2.4 How reproducible: 100% Steps to Reproduce: - Configure a Host Collection (lets call it 'Test Hostcollection 1') - Add at least one host to 'Test Hostcollection 1' - Create role "MyRole1" with below filters: 1. Miscellaneous: access_dashboard, access_settings, view_plugins, view_statistics, view_tasks Filter : None 2. Activation Keys : view_activation_keys Filter: name ~ ak_capsule_provision 3. Content Host : edit_content_hosts, view_content_hosts, Filter: host_collection ~ "Test Hostcollection 1" 4. Fact value: view_facts Filter: none 5. Host : edit_hosts, build_hosts, view_hosts Filter: host_collection ~ "Test Hostcollection 1" 6. Organization : view_organizations, view_subscriptions Filter : none 7. Product and Repositories: view_products Filter: none - Create a user myUser1 - Assign the role myRole to myUser1 - Login as myUser1 and open the dashboard Actual results: It gives the below error in dashboard : ---- PG::Error: ERROR: missing FROM-clause entry for table "katello_host_collections" LINE 1: ...id" IN (1) AND "hosts"."location_id" IN (2) AND (("katello_h... ^ : SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "katello_errata" INNER JOIN "katello_content_facet_errata" ON "katello_content_facet_errata"."erratum_id" = "katello_errata"."id" INNER JOIN "katello_content_facets" ON "katello_content_facets"."id" = "katello_content_facet_errata"."content_facet_id" WHERE "katello_content_facets"."host_id" IN (SELECT "hosts"."id" FROM "hosts" WHERE "hosts"."type" IN ('Host::Managed') AND "hosts"."organization_id" IN (1) AND "hosts"."location_id" IN (2) AND (("katello_host_collections"."name" ILIKE '%Test Hostcollection 1%'))) LIMIT 6) subquery_for_count ---- Expected results: It should show the dashboard Additional info: There is a work around for this. In step 5, if we use '=' instead of '~' in "Host" filter, it works. --- 5. Host : edit_hosts, build_hosts, view_hosts Filter: host_collection = "Test Hostcollection 1" ---