func multiInsert returns nil when err != nil

I suspect it should return err.
pull/1477/head
Mark Chambers 2023-01-15 12:56:48 +00:00 committed by Jack Christensen
parent 672431c0bd
commit 62a7e19a04
1 changed files with 1 additions and 1 deletions

View File

@ -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