Currently, when a user provides multiple queries and the configuration onError == resume is enabled, the entire statement block can be executed using conn.PgConn.Exec. The results can then be processed through multipleResultReader, instead of splitting the SQL queries and executing each statement individually. significantly reducing noticeable delay.
ref: jackc/pgx#1512
Currently, when a user provides multiple queries and the configuration onError == resume is enabled, the entire statement block can be executed using
conn.PgConn.Exec. The results can then be processed throughmultipleResultReader, instead of splitting the SQL queries and executing each statement individually. significantly reducing noticeable delay.ref: jackc/pgx#1512