diff --git a/r/example.result b/r/example.result index 6e5cb8d..3f73a11 100644 --- a/r/example.result +++ b/r/example.result @@ -30,6 +30,9 @@ explain analyze select * from t; id estRows actRows task access object execution info operator info memory disk TableReader_5 10000.00 5 root NULL time:, loops:, RU:, cop_task: {num:, max:, proc_keys:, rpc_num:, rpc_time:, copr_cache_hit_ratio:, build_task_duration:, max_distsql_concurrency:} data:TableFullScan_4 Bytes N/A └─TableFullScan_4 10000.00 5 cop[tikv] table:t tikv_task:{time:, loops:} keep order:false, stats:pseudo N/A N/A +select "My Matched matched changed Changed" +My Matched matched changed Changed +My Changed matched changed Changed insert into t values (6, 6); affected rows: 1 info: diff --git a/src/main.go b/src/main.go index d8d6e6d..afa522e 100644 --- a/src/main.go +++ b/src/main.go @@ -98,6 +98,11 @@ type ReplaceRegex struct { replace string } +type ReplaceResult struct { + match string + replace string +} + type tester struct { mdb *sql.DB name string @@ -146,6 +151,9 @@ type tester struct { // replace output result through --replace_regex /\.dll/.so/ replaceRegex []*ReplaceRegex + + // replace output result through --replace_result from to [from to [...]] + replaceResult []ReplaceResult } func newTester(name string) *tester { @@ -411,6 +419,7 @@ func (t *tester) Run() error { t.sortedResult = false t.replaceColumn = nil t.replaceRegex = nil + t.replaceResult = nil case Q_SORTED_RESULT: t.sortedResult = true case Q_REPLACE_COLUMN: @@ -490,6 +499,18 @@ func (t *tester) Run() error { return errors.Annotate(err, fmt.Sprintf("Could not parse regex in --replace_regex: line: %d sql:%v", q.Line, q.Query)) } t.replaceRegex = regex + case Q_REPLACE: + t.replaceResult = nil // Only use the latest one! + // First iteration + // TODO: handle quoted strings, as well as variables + cols := strings.Fields(q.Query) + // Require that col + replacement comes in pairs otherwise skip the last column number + if len(cols)%2 != 0 { + log.WithFields(log.Fields{"command": q.firstWord, "arguments": q.Query, "line": q.Line}).Warn("uneven number of replacement, will skip the last one") + } + for i := 0; i < len(cols)-1; i = i + 2 { + t.replaceResult = append(t.replaceResult, ReplaceResult{cols[i], cols[i+1]}) + } default: log.WithFields(log.Fields{"command": q.firstWord, "arguments": q.Query, "line": q.Line}).Warn("command not implemented") } @@ -814,6 +835,10 @@ func (t *tester) writeQueryResult(rows *byteRows) error { } else { value = string(col) } + // replace result + for _, replace := range t.replaceResult { + value = strings.ReplaceAll(value, replace.match, replace.replace) + } t.buf.WriteString(value) if i < len(row.data)-1 { t.buf.WriteString("\t") diff --git a/src/query.go b/src/query.go index 6a128d8..89e1609 100644 --- a/src/query.go +++ b/src/query.go @@ -124,6 +124,7 @@ const ( Q_COMMENT /* Comments, ignored. */ Q_COMMENT_WITH_COMMAND Q_EMPTY_LINE + Q_REPLACE_RESULT ) // ParseQueries parses an array of string into an array of query object. diff --git a/t/example.test b/t/example.test index 4b6f18d..240fe1f 100644 --- a/t/example.test +++ b/t/example.test @@ -35,6 +35,9 @@ explain analyze format='brief' select * from t; --replace_regex /:[ ]?[.0-9]+.*?,/:,/ /:[ ]?[.0-9]+.*?}/:}/ /[0-9]+ Bytes/ Bytes/ explain analyze select * from t; +--replace_result Matched Changed +select "My Matched matched changed Changed" + --enable_info insert into t values (6, 6);