Skip to content

Commit 6e9fd9b

Browse files
Update matlab/src/matlab/+arrow/+tabular/Table.m
Co-authored-by: Kevin Gurney <[email protected]>
1 parent 692315f commit 6e9fd9b

File tree

1 file changed

+1
-1
lines changed
  • matlab/src/matlab/+arrow/+tabular

1 file changed

+1
-1
lines changed

matlab/src/matlab/+arrow/+tabular/Table.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ function displayScalarObject(obj)
157157
firstSchema = batches{1}.Schema;
158158
otherSchemas = cellfun(@(rb) rb.Schema, batches(2:end), UniformOutput=false);
159159
idx = cellfun(@(other) ~isequal(firstSchema, other), otherSchemas, UniformOutput=true);
160-
badIndex = find(idx, 1,"first");
160+
inconsistentSchemaIndex = find(idx, 1,"first");
161161
if ~isempty(badIndex)
162162
badIndex = badIndex + 1;
163163
expectedSchema = arrow.tabular.internal.display.getSchemaString(firstSchema);

0 commit comments

Comments
 (0)