kevingurney commented on code in PR #38274:
URL: https://github.com/apache/arrow/pull/38274#discussion_r1370360261


##########
matlab/test/arrow/tabular/tRecordBatch.m:
##########
@@ -494,9 +494,23 @@ function TestIsEqualFalse(testCase)
             % Call isequal with more than two arguments
             testCase.verifyFalse(isequal(rb1, rb2, rb3, rb4));
         end
-
-
+       function testArrowRecordBatchNoArgs()
+    % Call arrow.recordBatch with no arguments
+    actual = arrow.recordBatch();
+    
+    % Create an empty expected RecordBatch
+    schema = arrow.schema();
+    expected = arrow.tabular.RecordBatch(schema, {});
+    
+    % Use isequal to check if the actual and expected are equal

Review Comment:
   I think this comment could be removed.



-- 
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]

Reply via email to