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 2b82bbc commit d515cb7Copy full SHA for d515cb7
matlab/src/matlab/+arrow/+tabular/Table.m
@@ -153,7 +153,7 @@ function displayScalarObject(obj)
153
msg = "The fromRecordBatches method requires at least one RecordBatch to be supplied.";
154
error("arrow:Table:FromRecordBatches:ZeroBatches", msg);
155
elseif numel(batches) > 1
156
- % Verify the RecordBatches have consistent Schema values.
+ % Verify that all supplied RecordBatches have a consistent Schema.
157
firstSchema = batches{1}.Schema;
158
otherSchemas = cellfun(@(rb) rb.Schema, batches(2:end), UniformOutput=false);
159
idx = cellfun(@(other) ~isequal(firstSchema, other), otherSchemas, UniformOutput=true);
0 commit comments