| 1230 | } |
| 1231 | |
| 1232 | Status ReadSchema(std::shared_ptr<Schema>* out) { |
| 1233 | return ReadSchema(ipc::IpcReadOptions::Defaults(), out); |
| 1234 | } |
| 1235 | |
| 1236 | Status ReadSchema(const IpcReadOptions& read_options, std::shared_ptr<Schema>* out) { |
| 1237 | auto buf_reader = std::make_shared<io::BufferReader>(buffer_); |
no test coverage detected