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

Function MakeBooleanInt32Int64Schema

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

Source from the content-addressed store, hash-verified

2987}
2988
2989std::shared_ptr<Schema> MakeBooleanInt32Int64Schema() {
2990 auto f0 = field("f0", boolean());
2991 auto f1 = field("f1", int32());
2992 auto f2 = field("f2", int64());
2993 return ::arrow::schema({f0, f1, f2});
2994}
2995
2996Status MakeBooleanInt32Int64Batch(const int length, std::shared_ptr<RecordBatch>* out) {
2997 auto schema_ = MakeBooleanInt32Int64Schema();

Callers 2

Calls 2

schemaFunction · 0.70
fieldFunction · 0.50

Tested by

no test coverage detected