()
| 223 | } |
| 224 | |
| 225 | func (rd *realDecoder) getNullableString() (*string, error) { |
| 226 | n, err := rd.getStringLength() |
| 227 | if err != nil || n == -1 { |
| 228 | return nil, err |
| 229 | } |
| 230 | |
| 231 | tmpStr := string(rd.raw[rd.off : rd.off+n]) |
| 232 | rd.off += n |
| 233 | return &tmpStr, err |
| 234 | } |
| 235 | |
| 236 | func (rd *realDecoder) getNullableInt32Array() ([]int32, error) { |
| 237 | n, err := rd.getArrayLength() |
nothing calls this directly
no test coverage detected