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 692315f commit 6e9fd9bCopy full SHA for 6e9fd9b
matlab/src/matlab/+arrow/+tabular/Table.m
@@ -157,7 +157,7 @@ function displayScalarObject(obj)
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);
160
- badIndex = find(idx, 1,"first");
+ inconsistentSchemaIndex = find(idx, 1,"first");
161
if ~isempty(badIndex)
162
badIndex = badIndex + 1;
163
expectedSchema = arrow.tabular.internal.display.getSchemaString(firstSchema);
0 commit comments