| 186 | } |
| 187 | |
| 188 | type Content struct { |
| 189 | Content interface{} `gorm:"type:String"` |
| 190 | } |
| 191 | |
| 192 | func (c Content) Value() (driver.Value, error) { |
| 193 | // mssql driver with issue on handling null bytes https://github.com/denisenkom/go-mssqldb/issues/530, |
nothing calls this directly
no outgoing calls
no test coverage detected