| 427 | // Returns true if there's no quote in the string array |
| 428 | template <typename StringArrayType> |
| 429 | static bool NoQuoteInArray(const StringArrayType& array) { |
| 430 | const uint8_t* data = array.raw_data() + array.value_offset(0); |
| 431 | const int64_t buffer_size = array.total_values_length(); |
| 432 | return std::memchr(data, '"', buffer_size) == nullptr; |
| 433 | } |
| 434 | |
| 435 | // Older version of GCC don't support custom allocators |
| 436 | // at some point we should change this to use memory_pool |
nothing calls this directly
no test coverage detected