Skip to content

Commit 1c46594

Browse files
committed
polish error message
1 parent 1de7c75 commit 1c46594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vector/src/main/java/org/apache/arrow/vector/util/VectorAppender.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ public ValueVector visit(ExtensionTypeVector<?> deltaVector, Void value) {
708708
public ValueVector visit(RunEndEncodedVector deltaVector, Void value) {
709709
Preconditions.checkArgument(
710710
typeVisitor.equals(deltaVector),
711-
"The vector to append must have the same type as the targetVector being appended");
711+
"The deltaVector to append must have the same type as the targetVector");
712712

713713
if (deltaVector.getValueCount() == 0) {
714714
return targetVector; // optimization, nothing to append, return

0 commit comments

Comments
 (0)