diesel.rs-website icon indicating copy to clipboard operation
diesel.rs-website copied to clipboard

Warn about insertion limits in "all about inserts" guide

Open Diggsey opened this issue 6 years ago • 1 comments

Postgres at least appears to have a limit of 65,535 rows per query, and diesel doesn't split the rows automatically, so it's up to the caller to do that.

Diggsey avatar Jun 13 '18 10:06 Diggsey

Unless you're inserting exactly one value per row, I suspect most folks will hit the bind parameter limit long before hitting any sort of row limit

sgrif avatar Jun 14 '18 21:06 sgrif