If we pass empty list, this code https://github.com/tizoc/ppx_pgsql/blob/master/lib/runtime/ppx_pgsql_runtime.ml#L49 generates `()` that postgres can't understand. For example: ``` SELECT COUNT(*) FROM users WHERE id IN (1,2,3) ``` is correct, but ``` SELECT COUNT(*) FROM users WHERE id IN () ``` gives syntax error.
If we pass empty list, this code
https://github.com/tizoc/ppx_pgsql/blob/master/lib/runtime/ppx_pgsql_runtime.ml#L49
generates
()that postgres can't understand. For example:is correct, but
gives syntax error.