kevingurney commented on code in PR #37629:
URL: https://github.com/apache/arrow/pull/37629#discussion_r1319992866
##########
matlab/test/arrow/tabular/tTable.m:
##########
@@ -593,6 +593,77 @@ function ColumnNamesNoSetter(testCase)
"MATLAB:class:SetProhibited");
end
+ function TestIsEqualTrue(testCase)
+ % Verify two tables are considered equal if:
+ % 1. They have the same schema
+ % 2. Their corresponding columns are equal
+ import arrow.tabular.Table
+
+ a1 = arrow.array([1 2 3]);
+ a2 = arrow.array(["A" "B" "C"]);
+ a3 = arrow.array([true true false]);
+
+ rb1 = Table.fromArrays(a1, a2, a3, ...
Review Comment:
rb1 -> t1
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]