(in []int32)
| 136 | } |
| 137 | |
| 138 | func (pe *prepEncoder) putInt32Array(in []int32) error { |
| 139 | err := pe.putArrayLength(len(in)) |
| 140 | if err != nil { |
| 141 | return err |
| 142 | } |
| 143 | pe.length += 4 * len(in) |
| 144 | return nil |
| 145 | } |
| 146 | |
| 147 | func (pe *prepEncoder) putNullableInt32Array(in []int32) error { |
| 148 | if in == nil { |
nothing calls this directly
no test coverage detected