(b []byte, v driver.Value)
| 1164 | } |
| 1165 | |
| 1166 | func appendValue(b []byte, v driver.Value) ([]byte, error) { |
| 1167 | return append(b, encode(nil, v, 0)...), nil |
| 1168 | } |
| 1169 | |
| 1170 | // parseArray extracts the dimensions and elements of an array represented in |
| 1171 | // text format. Only representations emitted by the backend are supported. |
no test coverage detected
searching dependent graphs…