marion 5 years ago
parent
commit
9649f853be
1 changed files with 3 additions and 0 deletions
  1. 3 0
      utils/db_utils.go

+ 3 - 0
utils/db_utils.go

@@ -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}