| 183 | using ValueDecoder::ValueDecoder; |
| 184 | |
| 185 | Status Initialize() { |
| 186 | util::InitializeUTF8(); |
| 187 | return ValueDecoder::Initialize(); |
| 188 | } |
| 189 | |
| 190 | Status Decode(const uint8_t* data, uint32_t size, bool quoted, value_type* out) { |
| 191 | if (CheckUTF8 && ARROW_PREDICT_FALSE(!util::ValidateUTF8Inline(data, size))) { |
nothing calls this directly
no test coverage detected