Reidddddd commented on code in PR #95:
URL: https://github.com/apache/hbase-connectors/pull/95#discussion_r1282620067
##########
spark/hbase-spark/src/main/scala/org/apache/hadoop/hbase/spark/DefaultSource.scala:
##########
@@ -593,11 +593,11 @@ class ScanRange(var upperBound:Array[Byte], var
isUpperBoundEqualTo:Boolean,
isLowerBoundEqualTo = if (lowerBoundCompare == 0)
isLowerBoundEqualTo && other.isLowerBoundEqualTo
- else isLowerBoundEqualTo
+ else if (lowerBoundCompare < 0) other.isLowerBoundEqualTo else
isLowerBoundEqualTo
Review Comment:
style nit: `else if else` not to be put into one line for readability
concern
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]