Is there a way to perform ILIKE/LIKE querying on Integer/Long object attributes in Hazelcast's distributed query?
For eg: In postgres, we can query like,
select * from document where CAST(numOfPages AS TEXT) ilike '%2';
to get the documents with total number of pages ending with 2.
Please help me achieve the same scenario for a hazelcast distributed query.