https://github.com/go-gorm/playground/pull/655

Description

I upgraded from 1.24.6 to 1.25.5 and some of my gorm queries are now failing, not sure if that regression was expected.

DB.Model(&User{}).
        Where("name IN ?", in).
        Find(&result).
        Updates(User{
            Name: "oui",
        }).
        Error