Hi,
I'm trying out the velocity support in 3.2. I followed the INPredicate example using a delete statement:
delete from raw where file_id #IN("fileIds")
But it didn't work. Turns out that VelocitySupport.isVelocity(String) returns false for the sql above. I added a dummy variable to make it pass the check:
delete from raw where file_id #IN("fileIds") $!foo
It works, but am I missing something obvious?
Thanks,
Yuesong