On Sat., Jun. 15, 2019, 8:30 p.m. Greg Stark, <st...@mit.edu> wrote: > > > So what would this do for someone who explicitly writes: > > WHERE col = ANY ? > > and pass an array? >
Actually thinking about this for two more seconds the question is what it would do with a query like WHERE col = ANY '1,2,3'::integer[] Or WHERE col = ANY ARRAY[1,2,3] Whichever the language binding that is failing to do parameterized queries is doing to emulate them. >