Skip to content

Commit

Permalink
fix: fix typo in the bench command
Browse files Browse the repository at this point in the history
  • Loading branch information
Mini256 committed Mar 30, 2022
1 parent 4166dfb commit a233bb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/bench/ch_benchmark.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func executeCH(action string) error {
runtime.GOMAXPROCS(maxProcs)

if err := openDB(); err != nil {
fmt.Println("Cannot open database, pleae check it (ip/port/username/password)")
fmt.Println("Cannot open database, please check it (ip/port/username/password)")
return err
}
defer closeDB()
Expand Down
2 changes: 1 addition & 1 deletion components/bench/tpcc.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func executeTpcc(action string) error {
runtime.GOMAXPROCS(maxProcs)

if err := openDB(); err != nil {
fmt.Println("Cannot open database, pleae check it (ip/port/username/password)")
fmt.Println("Cannot open database, please check it (ip/port/username/password)")
closeDB()
return err
}
Expand Down
2 changes: 1 addition & 1 deletion components/bench/tpch.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var tpchConfig tpch.Config

func executeTpch(action string) error {
if err := openDB(); err != nil {
fmt.Println("Cannot open database, pleae check it (ip/port/username/password)")
fmt.Println("Cannot open database, please check it (ip/port/username/password)")
closeDB()
return err
}
Expand Down

0 comments on commit a233bb3

Please sign in to comment.