HDFS-16873 FileStatus compareTo specify ordering by path (#5219)

This commit is contained in:
David Dillon 2022-12-20 21:11:55 -05:00 committed by GitHub
parent 8d221255f2
commit b63b777c84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -402,7 +402,8 @@ public void setSymlink(final Path p) {
}
/**
* Compare this FileStatus to another FileStatus
* Compare this FileStatus to another FileStatus based on lexicographical
* order of path.
* @param o the FileStatus to be compared.
* @return a negative integer, zero, or a positive integer as this object
* is less than, equal to, or greater than the specified object.
@ -412,7 +413,8 @@ public int compareTo(FileStatus o) {
}
/**
* Compare this FileStatus to another FileStatus.
* Compare this FileStatus to another FileStatus based on lexicographical
* order of path.
* This method was added back by HADOOP-14683 to keep binary compatibility.
*
* @param o the FileStatus to be compared.