Add search query in Web UI to look for VMs by cluster compatibility level override (custom_compatibility_version field in "vms" view). Additional info: In draft implementation, when we write a search query: Vms: custom_compatibility_level = 4.1 it is translated into SQL: select ... where custom_compatibility_version IS NULL OR custom_compatibility_version = '4.1'; which is not what we want. This is a standard translation for all string expressions, so we need to fix the parser to generate a correct SQL just in this case: select ... where custom_compatibility_version = '4.1';
Verified on ovirt-engine-4.3.0.4-0.1.el7.noarch.
This bugzilla is included in oVirt 4.3.0 release, published on February 4th 2019. Since the problem described in this bug report should be resolved in oVirt 4.3.0 release, it has been closed with a resolution of CURRENT RELEASE. If the solution does not work for you, please open a new bug report.
*** Bug 1758565 has been marked as a duplicate of this bug. ***