mirror of https://github.com/jackc/pgx.git
func multiInsert returns nil when err != nil
I suspect it should return err.pull/1477/head
parent
672431c0bd
commit
62a7e19a04
|
@ -484,7 +484,7 @@ func multiInsert(conn *pgx.Conn, tableName string, columnNames []string, rowSrc
|
|||
}
|
||||
|
||||
if err := tx.Commit(context.Background()); err != nil {
|
||||
return 0, nil
|
||||
return 0, err
|
||||
}
|
||||
|
||||
return rowCount, nil
|
||||
|
|
Loading…
Reference in New Issue