Skip to content

Commit

Permalink
Fix an argument typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPowers committed Jul 19, 2018
1 parent cd1d1ef commit d4a91c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,12 +332,12 @@ object functions {
buckets: Array[(Any, Any)],
inclusiveBoundries: Boolean = false,
lowestBoundLte: Boolean = false,
hightestBoundGte: Boolean = false
highestBoundGte: Boolean = false
): Column = {

val inclusiveBoundriesCol = lit(inclusiveBoundries)
val lowerBoundLteCol = lit(lowestBoundLte)
val upperBoundGteCol = lit(hightestBoundGte)
val upperBoundGteCol = lit(highestBoundGte)

val b = buckets.map { res: (Any, Any) =>
when(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ object FunctionsTest
),
inclusiveBoundries = true,
lowestBoundLte = false,
hightestBoundGte = true
highestBoundGte = true
)
)

Expand Down Expand Up @@ -604,7 +604,7 @@ object FunctionsTest
(11, null)
),
inclusiveBoundries = false,
hightestBoundGte = true
highestBoundGte = true
)
)

Expand Down

0 comments on commit d4a91c8

Please sign in to comment.