Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

こんにちわ is wrong Japanse, Correct word is こんにちは #1085

Merged
merged 1 commit into from Sep 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion _example/limit/limit.go
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion _example/simple/Dockerfile
Expand Up @@ -33,7 +33,7 @@ RUN \
RUN \
# Smoke test
set -o pipefail; \
/go/bin/simple | grep 99\ こんにちわ世界099
/go/bin/simple | grep 99\ こんにちは世界099

# -----------------------------------------------------------------------------
# Main Stage
Expand Down
2 changes: 1 addition & 1 deletion _example/simple/simple.go
Expand Up @@ -37,7 +37,7 @@ func main() {
}
defer stmt.Close()
for i := 0; i < 100; i++ {
_, err = stmt.Exec(i, fmt.Sprintf("こんにちわ世界%03d", i))
_, err = stmt.Exec(i, fmt.Sprintf("こんにちは世界%03d", i))
if err != nil {
log.Fatal(err)
}
Expand Down