| 1834 | } |
| 1835 | |
| 1836 | Status WriteDictionary(int64_t dictionary_id, const std::shared_ptr<Array>& dictionary, |
| 1837 | bool is_delta) { |
| 1838 | IpcPayload payload; |
| 1839 | RETURN_NOT_OK(GetDictionaryPayload(dictionary_id, is_delta, dictionary, |
| 1840 | IpcWriteOptions::Defaults(), &payload)); |
| 1841 | RETURN_NOT_OK(payload_writer_->WritePayload(payload)); |
| 1842 | return Status::OK(); |
| 1843 | } |
| 1844 | |
| 1845 | Status WriteBatchPayload(const RecordBatch& batch) { |
| 1846 | // write record batch payload only |
no test coverage detected