Subject Max size of parameters to IN and NOT IN?
Author Robert DiFalco
For a prepared statement, or not I suppose, what is the maximum number
of values I can use in an IN clause?

For example:

SELECT *
FROM Foo
WHERE Foo.id IN (1,2,3,4,5);

I couldn't find this constraint in the docs. Thanks!

R.