Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-schultz committed Mar 21, 2024
1 parent 9344339 commit 9981105
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hail/src/main/scala/is/hail/rvd/AbstractRVDSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ case class IndexedRVDSpec2(
val partFile = partFiles(oldPartIdx)
val intersectionInterval =
extendedNP.rangeBounds(newPartIdx)
.intersect(extendedNP.kord.intervalEndpointOrdering, oldInterval).get
.intersect(extendedNP.kord, oldInterval).get
Row(
oldPartIdx.toLong,
s"$path/parts/$partFile",
Expand All @@ -525,7 +525,7 @@ case class IndexedRVDSpec2(
)
Some((
ctxs,
oldInterval.intersect(extendedNP.kord.intervalEndpointOrdering, newInterval).get,
oldInterval.intersect(extendedNP.kord, newInterval).get,
))
}
}.unzip
Expand All @@ -552,7 +552,7 @@ case class IndexedRVDSpec2(
val partFile = partFiles(oldPartIdx)
val intersectionInterval =
extendedNP.rangeBounds(newPartIdx)
.intersect(extendedNP.kord.intervalEndpointOrdering, oldInterval).get
.intersect(extendedNP.kord, oldInterval).get
Row(
oldPartIdx.toLong,
s"$path/parts/$partFile",
Expand Down

0 comments on commit 9981105

Please sign in to comment.