When setting up a query condition, the comparision operation fails when trying to compare a numeric value with a char.
For example, in the IDL, if there is a opic defined as:
struct EntityType
{
char m_domain;
}
the query condition will fail if using a query condition such as "m_domain = 1"
but if the IDL is changed so that m_domain is of type "short", then the query condition comparision works properly.
I also tried "m_domain = '1'" whichdidn't work.
Is there any way to compare an 8bit value as a numeric value?