Merge branch 'v1' into feat/driver-customisation

This commit is contained in:
Lunny Xiao 2024-01-22 08:07:19 +00:00
commit 4f5c58c1cf
1 changed files with 2 additions and 2 deletions

View File

@ -240,7 +240,7 @@ func (session *Session) getSlice(rows *core.Rows, types []*sql.ColumnType, field
}
return nil
default:
return fmt.Errorf("unspoorted slice type: %t", t)
return fmt.Errorf("unsupported slice type: %t", t)
}
}
@ -269,7 +269,7 @@ func (session *Session) getMap(rows *core.Rows, types []*sql.ColumnType, fields
}
return nil
default:
return fmt.Errorf("unspoorted map type: %t", t)
return fmt.Errorf("unsupported map type: %t", t)
}
}