| 1128 | type ByteArrayValuer [1]byte |
| 1129 | type ByteSliceValuer []byte |
| 1130 | type FuncArrayValuer struct { |
| 1131 | delimiter func() string |
| 1132 | value func() (driver.Value, error) |
| 1133 | } |
| 1134 | |
| 1135 | func (a ByteArrayValuer) Value() (driver.Value, error) { return a[:], nil } |
| 1136 | func (b ByteSliceValuer) Value() (driver.Value, error) { return []byte(b), nil } |
nothing calls this directly
no outgoing calls
no test coverage detected