Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
Yisaer committed Dec 14, 2022
1 parent ea362ac commit 0c10bc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions domain/plan_replayer_dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import (
)

const (
// planReplayerSQLMetaFile indicates sql meta path for plan replayer
planReplayerSQLMetaFile = "sql_meta.toml"
// PlanReplayerSQLMetaFile indicates sql meta path for plan replayer
PlanReplayerSQLMetaFile = "sql_meta.toml"
// PlanReplayerConfigFile indicates config file path for plan replayer
PlanReplayerConfigFile = "config.toml"
// PlanReplayerMetaFile meta file path for plan replayer
Expand Down Expand Up @@ -291,7 +291,7 @@ func generateRecords(task *PlanReplayerDumpTask) []PlanReplayerStatusRecord {
}

func dumpSQLMeta(zw *zip.Writer, task *PlanReplayerDumpTask) error {
cf, err := zw.Create(planReplayerSQLMetaFile)
cf, err := zw.Create(PlanReplayerSQLMetaFile)
if err != nil {
return errors.AddStack(err)
}
Expand Down

0 comments on commit 0c10bc7

Please sign in to comment.