こんにちわ is wrong Japanse. The correct word is こんにちは

This commit is contained in:
KiYugadgeter
2022-09-04 17:28:49 +09:00
committed by mattn
parent da62659c58
commit 7476442ed6
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ func createBulkInsertQuery(n int, start int) (query string, args []interface{})
for i := 0; i < n; i++ {
values[i] = "(?, ?)"
args[pos] = start + i
args[pos+1] = fmt.Sprintf("こんにち世界%03d", i)
args[pos+1] = fmt.Sprintf("こんにち世界%03d", i)
pos += 2
}
query = fmt.Sprintf(