Updated CopyFromSlice example in doc.go

The example had a syntax error and didn't explain what user was to begin with. Fixed it.
pull/901/head
Musbah Sinno 2020-12-20 15:33:48 -05:00 committed by Jack Christensen
parent fc4d50f6c2
commit b664891853
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

@ -289,7 +289,7 @@ When you already have a typed array using CopyFromSlice can be more convenient.
pgx.Identifier{"people"},
[]string{"first_name", "last_name", "age"},
pgx.CopyFromSlice(len(rows), func(i int) ([]interface{}, error) {
return []interface{user.FirstName, user.LastName, user.Age}, nil
return []interface{}{rows[i].FirstName, rows[i].LastName, rows[i].Age}, nil
}),
)