-
Bug
-
Resolution: Unresolved
-
Normal
-
None
-
ACM 2.14.0
-
None
-
Quality / Stability / Reliability
-
False
-
-
False
-
-
-
Mgmt Applications 2.17-1
-
Low
-
None
Description of problem:
As described in Slack thread, when querying via search kind: StorageClass allowVolumeExpansion:true, the SQL resolves to:
WHERE data->'allowVolumeExpansion'?('true')
The attribute is stored as a boolean and returns no results as that's not a boolean operation. The query to fetch the result should be:
WHERE data?'allowVolumeExpanion' or WHERE data->'allowVolumeExpansion'='true'.
We can add search-collector handling to convert booleans to strings, or modify the API to permit querying booleans, but that would go against our convention of storing most things as default text.
Version-Release number of selected component (if applicable):
How reproducible:
Steps to Reproduce:
- ...