Skip to content

Commit

Permalink
nit feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanck committed Oct 21, 2023
1 parent 189a00b commit 1b4f100
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ public UUID commitId() {
return commitId;
}

/**
* Valid-through timestamp, which is the min-of-max record timestamps across all workers for the
* commit.
*/
public Long vtts() {
return vtts;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
import org.apache.iceberg.types.Types.StructType;

public class EventTestUtil {
private EventTestUtil() {}

public static DataFile createDataFile() {
Ctor<DataFile> ctor =
DynConstructors.builder(DataFile.class)
Expand Down Expand Up @@ -115,6 +117,4 @@ public static DeleteFile createDeleteFile() {
Collections.singletonList(1L),
ByteBuffer.wrap(new byte[] {0}));
}

private EventTestUtil() {}
}

0 comments on commit 1b4f100

Please sign in to comment.