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

Function MakeBooleanInt32Int64Schema

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

Source from the content-addressed store, hash-verified

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

Callers 2

Calls 2

schemaFunction · 0.70
fieldFunction · 0.50

Tested by

no test coverage detected