Results 2 issues of motuwe

![image](https://cloud.githubusercontent.com/assets/5621857/13561801/4efba94c-e46c-11e5-94ad-c1f9dbe908da.png)

当 result 为 nil 时,会导致 panic 比如 MySQL max_allowed_packet 默认为 64MB,如果数据包长度超过 64MB,则会导致 panic。可复现示例如下 ```go package main import ( "log" "strings" "time" "gorm.io/driver/mysql" "gorm.io/gorm" "gorm.io/sharding" ) type Foo struct { ID...