| 241 | const bool full_validation_; |
| 242 | |
| 243 | explicit ScalarValidateImpl(bool full_validation) : full_validation_(full_validation) { |
| 244 | ::arrow::util::InitializeUTF8(); |
| 245 | } |
| 246 | |
| 247 | Status Validate(const Scalar& scalar) { |
| 248 | if (!scalar.type) { |
nothing calls this directly
no test coverage detected