We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4892773 commit b2e6331Copy full SHA for b2e6331
plugin/diff.go
@@ -9,6 +9,9 @@ import (
9
)
10
11
func RecordDiff(l, r arrow.Record) string {
12
+ if array.RecordApproxEqual(l, r, array.WithUnorderedMapKeys(true)) {
13
+ return ""
14
+ }
15
var sb strings.Builder
16
if l.NumCols() != r.NumCols() {
17
return fmt.Sprintf("different number of columns: %d vs %d", l.NumCols(), r.NumCols())
0 commit comments