Skip to content

Commit

Permalink
fix col
Browse files Browse the repository at this point in the history
  • Loading branch information
Light-City committed Sep 28, 2023
1 parent cd8cf5a commit 0bea160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/record_batch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ Result<std::shared_ptr<RecordBatch>> ConcatenateRecordBatches(
length = array->length();
} else if (length != array->length()) {
return Status::Invalid(
"column index ", i, " length is ", array->length(),
"column index ", col, " length is ", array->length(),
", does not match the length of previous columns: ", length);
}
columns.push_back(array);
Expand Down

0 comments on commit 0bea160

Please sign in to comment.