Skip to content

Commit

Permalink
/go/performance/utils/benchmark_runner/run_test.go: fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeegoddd committed Feb 15, 2024
1 parent 793c8ef commit b7a88b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/performance/utils/benchmark_runner/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,11 @@ func TestDoltMysqlTpccRunner(t *testing.T) {
func getDoltgresVersion() string {
version := os.Getenv("DOLTGRESQL_VERSION")
if version == "" {
return "0.4.0"
return "v0.4.0"
}
return version
}

func getDoltgresExec() string {
return fmt.Sprintf("/doltgresql/utils/doltgres_builder/cmd/doltgresBin/v%s/doltgres", getDoltgresVersion())
return fmt.Sprintf("/doltgresql/utils/doltgres_builder/cmd/doltgresBin/%s/doltgres", getDoltgresVersion())
}

0 comments on commit b7a88b7

Please sign in to comment.