Chris Bishop

Results 2 comments of Chris Bishop

I am getting a similar issue. The error I am getting is that the []byte is getting converted to mysql.JSON. ``` Query: INSERT INTO `table` (`token`) VALUES (?) Arguments: []interface...

I had also switch from v3 to v4. I had to setup a Value Converter. ``` func (u DBBytes) Value() (driver.Value, error) { return u[:], nil } func (u *DBBytes)...