Consider the query:
equal("id","1001")
Here id is of Long type
1001 is enclosed in quotes and considered a String
Getting the below error:
com.googlecode.cqengine.query.parser.common.InvalidQueryException: Failed to parse as type Long: "1001"
the below query works fine
equal("id",1001)
Is it the value given should always match the target type?
Is implicit conversion (String to Long) to target type supported?