rdblue commented on a change in pull request #3733:
URL: https://github.com/apache/iceberg/pull/3733#discussion_r769135100
##########
File path: core/src/test/java/org/apache/iceberg/TestTables.java
##########
@@ -80,21 +81,26 @@ public static Transaction beginCreate(File temp, String
name, Schema schema,
}
public static Transaction beginReplace(File temp, String name, Schema
schema, PartitionSpec spec) {
- return beginReplace(temp, name, schema, spec, SortOrder.unsorted(),
ImmutableMap.of());
+ return beginReplace(temp, name, schema, spec, SortOrder.unsorted(),
ImmutableMap.of(), null);
}
public static Transaction beginReplace(File temp, String name, Schema
schema, PartitionSpec spec,
- SortOrder sortOrder, Map<String,
String> properties) {
- TestTableOperations ops = new TestTableOperations(name, temp);
- TableMetadata current = ops.current();
+ SortOrder sortOrder, Map<String, String> properties) {
Review comment:
I recently looked into checkstyle and found that it allows more spaces
than are required. This is why we get extra indentation in a lot of places. I'd
prefer to turn that off, but we'd actually have to make a ton of changes. I'm
debating whether it's worth it.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]