Отладка
parent
0f93a9cf5a
commit
40a6a1c3f4
|
@ -30,7 +30,8 @@ func NewPerson() (p Person) {
|
|||
p.FirstName = womanNames[rand.Intn(len(womanNames))]
|
||||
p.SecondName = secondNames[rand.Intn(len(secondNames))] + "а"
|
||||
}
|
||||
t := make([]byte,16); rand.Read(t)
|
||||
t := make([]byte, 16)
|
||||
rand.Read(t)
|
||||
p.Password = string(t)
|
||||
p.City = cities[rand.Intn(len(cities))]
|
||||
for i := 0; i < (rand.Intn(4) + 3); i++ {
|
||||
|
@ -62,7 +63,7 @@ func FillDB(db *sql.DB, lim int) {
|
|||
p.City,
|
||||
strings.Join(p.Interests, ","),
|
||||
); err != nil {
|
||||
log.Fatalf("can't insert row in DB. Inserted %d rows of %d", i, lim)
|
||||
log.Fatalf("can't insert row in DB. Inserted %d rows of %d: %s", i, lim, err.Error())
|
||||
}
|
||||
}
|
||||
log.Println("Table USERS filled successfully")
|
||||
|
|
Loading…
Reference in New Issue