diesel.rs-website
diesel.rs-website copied to clipboard
Warn about insertion limits in "all about inserts" guide
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.
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