(b []byte, v driver.Value)
| 773 | } |
| 774 | |
| 775 | func appendValue(b []byte, v driver.Value) ([]byte, error) { |
| 776 | enc, err := encode(v, 0) |
| 777 | if err != nil { |
| 778 | return nil, err |
| 779 | } |
| 780 | return append(b, enc...), nil |
| 781 | } |
| 782 | |
| 783 | // parseArray extracts the dimensions and elements of an array represented in |
| 784 | // text format. Only representations emitted by the backend are supported. |
no test coverage detected
searching dependent graphs…