Skip to content

Commit

Permalink
Merge pull request #5 from PickBas/fix-8810-hive3
Browse files Browse the repository at this point in the history
[ISSUE #8810] hive3/*: replaced .size() > 0 with isEmpty()
  • Loading branch information
PickBas authored Oct 13, 2023
2 parents 0f72dbb + 1920c91 commit c0ed11e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public long getFileLength() {
* @return true if is ACID
*/
public boolean isAcid() {
return hasBase || deltas.size() > 0;
return hasBase || !deltas.isEmpty();
}

public long getProjectedColumnsUncompressedSize() {
Expand Down

0 comments on commit c0ed11e

Please sign in to comment.