• 6543's avatar
    update xorm.io/xorm v1.3.2-0.20220714055524-c3bce556200f (#20371) (#20372) · 4c1f4ee8
    6543 authored
    Backport #20371
    
    Xorm 1.3.2-0.20220714055524 contains a fix for interpreting db column sizes. Prior to this fix xorm would assume that the size of a column was within the range of an `int`. This is correct on 64bit machines where `int` is typical equivalent to `int64` however, on 32bit machines `int` tends to be `int32`. 
    
    Unfortunately the size of a LONGTEXT field is actually `max_uint32`, thus using `strconv.Atoi` on these fields will fail and thus #20161 occurs on 32 bit arm. Xorm 1.3.2-0.20220714055524 changes this field to use int64 instead.
    
    Fix  #20161
    4c1f4ee8
Analyzing file…
go.mod 14.1 KB