I have got a Postgres function that accepts an array of a custom composite type. I have got it to work by generating a huge SQL text query, but past 100,000 array items, it fails. This could be either Node or Postgres, I am not sure.
I know that in Npgsql
, the .NET Postgres driver, that you can pass in arrays as parameters. Is it possible to do that in node-postgres
as well?