https://github.com/layerware/hugsql/blob/master/hugsql-adapter-next-jdbc/src/hugsql/adapter/next_jdbc.clj https://cljdoc.org/d/com.github.seancorfield/next.jdbc/1.3.847/api/next.jdbc#execute-batch! Does hugsql support batch via next.jdbc?
No.
Multi-record insert options: https://www.hugsql.org/hugsql-in-detail/parameter-types/sql-tuple-list-parameters
If you're doing large batches, then you can map or doseq over your HugSQL-generated insert function within a transaction, or just use next.jdbc/execute-batch! directly.
TY!