| 45 | namespace { |
| 46 | |
| 47 | ARROW_NOINLINE |
| 48 | Status ProtoStringInputTooBig(const char* name) { |
| 49 | return Status::Invalid("Serialized ", name, " size should not exceed 2 GiB"); |
| 50 | } |
| 51 | |
| 52 | ARROW_NOINLINE |
| 53 | Status ProtoStringOutputTooBig(const char* name) { |
no test coverage detected