rdblue commented on a change in pull request #2732:
URL: https://github.com/apache/iceberg/pull/2732#discussion_r658343335
##########
File path:
arrow/src/main/java/org/apache/iceberg/arrow/vectorized/ColumnarBatch.java
##########
@@ -36,17 +36,17 @@
ColumnarBatch(int numRows, ColumnVector[] columns) {
for (int i = 0; i < columns.length; i++) {
int columnValueCount = columns[i].getFieldVector().getValueCount();
- Preconditions.checkArgument(numRows == columnValueCount,
+ Preconditions.checkArgument(
+ numRows == columnValueCount,
Review comment:
I don't have a problem with including the condition on the previous
line. Is the rule that if one argument starts with a newline that all arguments
must be?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]