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

Method Diff

cpp/src/arrow/array/array_base.cc:220–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220std::string Array::Diff(const Array& other) const {
221 std::stringstream diff;
222 ARROW_IGNORE_EXPR(Equals(other, EqualOptions().diff_sink(&diff)));
223 return diff.str();
224}
225
226bool Array::Equals(const Array& arr, const EqualOptions& opts) const {
227 return ArrayEquals(*this, arr, opts);

Callers 1

TEST_FFunction · 0.45

Calls 4

diff_sinkMethod · 0.80
strMethod · 0.80
EqualsFunction · 0.70
EqualOptionsClass · 0.50

Tested by 1

TEST_FFunction · 0.36