expression: remove fmt.Println in Constant.EvalJSON (#11694)

This commit is contained in:
lysu
2019-08-09 14:46:55 +08:00
committed by Zhang Jian
parent d210889a6c
commit 9d248f56cb

View File

@ -284,7 +284,6 @@ func (c *Constant) EvalJSON(ctx sessionctx.Context, _ chunk.Row) (json.BinaryJSO
if err != nil {
return json.BinaryJSON{}, true, err
}
fmt.Println("const eval json", val.GetMysqlJSON().String())
c.Value.SetMysqlJSON(val.GetMysqlJSON())
c.GetType().Tp = mysql.TypeJSON
} else {