Отладка

actency-mysql57-replication
Andrey Ivanov 2021-01-26 13:37:48 +03:00 committed by ya@tiburon.su
parent 0f93a9cf5a
commit 40a6a1c3f4
1 changed files with 24 additions and 23 deletions

View File

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