| 555 | } |
| 556 | |
| 557 | void AppendNumberPaddedToNineDigits(char* out, int64_t x) { |
| 558 | size_t kPad = 9; |
| 559 | out += std::max(kPad, static_cast<size_t>(GetNumDigits(x))); |
| 560 | arrow::internal::detail::FormatAllDigitsLeftPadded(x, kPad, '0', &out); |
| 561 | } |
| 562 | |
| 563 | Result<std::shared_ptr<Schema>> SetOutputColumns( |
| 564 | const std::vector<std::string>& columns, |
no test coverage detected