mysql: Using `int.str()` instead of `string(int)`

pull/4752/head
Don Alfons Nisnoni 2020-05-06 17:53:47 +08:00 committed by GitHub
parent 215657e16a
commit 5bd3045498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ pub fn (r Result) rows() []Row {
if rr[i] == 0 { if rr[i] == 0 {
row.vals << '' row.vals << ''
} else { } else {
row.vals << string(rr[i]) row.vals << string(&byte(rr[i]))
} }
} }
rows << row rows << row