QUESTION

Does Panther support querying if an IP belongs in a CIDR?

Example:

 select * FROM mytable
where ip in 10.0.0.0/8 

ANSWER

You cannot query to match an IP inside a CIDR like the example above. However, the parse_ip method can be utilized to achieve the same goal.