(val interface{})
| 146 | } |
| 147 | |
| 148 | func NewNullJobState(val interface{}) (x NullJobState) { |
| 149 | x.Scan(val) // yes, we ignore this error, it will just be an invalid value. |
| 150 | return |
| 151 | } |
| 152 | |
| 153 | // Scan implements the Scanner interface. |
| 154 | func (x *NullJobState) Scan(value interface{}) (err error) { |
searching dependent graphs…