| 137 | } |
| 138 | |
| 139 | Status Visit(const NullType&) { |
| 140 | if (data.null_count != data.length) { |
| 141 | return Status::Invalid("Null array null_count unequal to its length"); |
| 142 | } |
| 143 | return Status::OK(); |
| 144 | } |
| 145 | |
| 146 | Status Visit(const FixedWidthType&) { return ValidateFixedWidthBuffers(); } |
| 147 |
nothing calls this directly
no test coverage detected