@@ -90,6 +90,9 @@ func TransInsertWithTableNameAndSize(trans *xorm.Session, tableName string, size
if v.Kind() == reflect.Ptr {
v = v.Elem()
}
+ if v.IsZero() {
+ continue
+ }
elemValue := v.Interface()
if nil == arrMap[idx] {
arrMap[idx] = []interface{}{elemValue}