What is the right way to pass long INT values list to IN filter
Don’t.
Pass in a delimited string, then parse that string into an array and use “= any(array)”.
This has the primary benefit of making the input a single parameter.
David J.
What is the right way to pass long INT values list to IN filter