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

Function CompareBatchColumnsDetailed

cpp/src/arrow/ipc/test_common.cc:74–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74void CompareBatchColumnsDetailed(const RecordBatch& result, const RecordBatch& expected) {
75 for (int i = 0; i < expected.num_columns(); ++i) {
76 auto left = result.column(i);
77 auto right = expected.column(i);
78 CompareArraysDetailed(i, *left, *right);
79 }
80}
81
82Status MakeRandomInt32Array(int64_t length, bool include_nulls, MemoryPool* pool,
83 std::shared_ptr<Array>* out, uint32_t seed, int32_t min,

Callers 1

CheckReadResultMethod · 0.85

Calls 3

CompareArraysDetailedFunction · 0.85
num_columnsMethod · 0.45
columnMethod · 0.45

Tested by

no test coverage detected