Skip to content

Commit

Permalink
Fix cf setting bugs.
Browse files Browse the repository at this point in the history
Signed-off-by: lucasliang <[email protected]>
  • Loading branch information
LykxSassinator committed Sep 13, 2024
1 parent e8d9554 commit 0fc92e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/benchtool/workloads/rawkv/raw.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ func convertCfName(cf string) string {
case "default":
return config.WorkloadColumnFamilyDefault
case "write":
return config.WorkloadColumnFamilyWrite
case "lock":
return config.WorkloadColumnFamilyLock
fmt.Printf("Column family %s is not supported, use default instead\n", cf)
return config.WorkloadColumnFamilyDefault
default:
return "default"
return cf
}
}

Expand Down

0 comments on commit 0fc92e6

Please sign in to comment.