For example, I've a query like
SELECT * FROM something WHERE someone IN (val1, val2, so on...)
For making query for norm, It'll be like
SELECT * FROM something WHERE someone IN (:values)
If such query is compiled using the norm, it just takes only one argument. I think it should take a vararg.