Skip to content

Commit

Permalink
Merge pull request #7211 from dolthub/db/sysbench
Browse files Browse the repository at this point in the history
[no-release-notes] /go/performance/utils/sysbench_runner/config.go: skip dolt_branches.lua
  • Loading branch information
coffeegoddd authored Dec 27, 2023
2 parents c4831b4 + 2f3e696 commit da8bb54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/performance/utils/sysbench_runner/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ func getLuaScriptTestsFromDir(dir string) ([]*ConfigTest, error) {
if strings.HasSuffix(path, ".lua") && !strings.Contains(path, "_common.lua") {

// todo: make this work with doltgres
if !strings.Contains(path, "postgres") {
if !strings.Contains(path, "postgres") && !strings.Contains(path, "dolt_branches.lua") {
luaScripts = append(luaScripts, NewConfigTest(path, []string{}, true))
}
}
Expand Down

0 comments on commit da8bb54

Please sign in to comment.