Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
1.0.0
-
None
Description
1.Created 2 hive_table entities by name : table1 and table2.
2. Fired basic search query with following POST body :
{ "entityFilters":{ "condition":"OR", "criterion":[ { "attributeName":"name", "operator":"=", "attributeValue":"table1" }, { "attributeName":"name", "operator":"=", "attributeValue":"table2" } ] }, "tagFilters":null, "attributes":[ ], "query":null, "limit":25, "offset":0, "typeName":"hive_table", "classification":null, "excludeDeletedEntities": false }
2. Expected the response would return both table1 and table2.
3. Only table1 (first filter) is returned. Any filter other than "!=" in the second condition doesn't fetch expected results.
4. Also when "excludeDeletedEntities" is set to true , though table1 and table2 are ACTIVE , no entity is returned.