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