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