mysql: change logging from into to debug for scan

This commit is contained in:
Daniel Lee 2017-08-09 19:33:09 +02:00
parent 1105bb371f
commit 43fa852cc1

View File

@ -183,7 +183,7 @@ func (e MysqlExecutor) getTypedRowData(types []*sql.ColumnType, rows *core.Rows)
values := make([]interface{}, len(types))
for i, stype := range types {
e.log.Info("type", "type", stype)
e.log.Debug("type", "type", stype)
switch stype.DatabaseTypeName() {
case mysql.FieldTypeNameTiny:
values[i] = new(int8)