MCPcopy Create free account
hub / github.com/apache/arrow / Start

Method Start

cpp/src/arrow/ipc/read_write_test.cc:1829–1838  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1827 }
1828
1829 Status Start() {
1830 RETURN_NOT_OK(payload_writer_->Start());
1831
1832 // write schema
1833 IpcPayload payload;
1834 DictionaryFieldMapper mapper(schema_);
1835 RETURN_NOT_OK(
1836 GetSchemaPayload(schema_, IpcWriteOptions::Defaults(), mapper, &payload));
1837 return payload_writer_->WritePayload(payload);
1838 }
1839
1840 Status WriteDictionary(int64_t dictionary_id, const std::shared_ptr<Array>& dictionary,
1841 bool is_delta) {

Callers 1

TESTFunction · 0.45

Calls 3

GetSchemaPayloadFunction · 0.85
DefaultsFunction · 0.50
WritePayloadMethod · 0.45

Tested by

no test coverage detected