Commit 69aba101 authored by vipwzw's avatar vipwzw Committed by 33cn

all test pass

parent a74b1837
......@@ -448,10 +448,7 @@ func (row *JSONRow) parse() error {
row.data = make(map[string]interface{})
d := json.NewDecoder(bytes.NewBufferString(row.JsLog.Data))
d.UseNumber()
if err := d.Decode(&row.data); err != nil {
return err
}
return nil
return d.Decode(&row.data)
}
//SetPayload 设置行的内容
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment