-
Couldn't load subscription status.
- Fork 3.9k
ARROW-6211: [Java] Remove dependency on RangeEqualsVisitor from ValueVector interface #5091
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
cc @pravindra |
java/vector/src/main/java/org/apache/arrow/vector/compare/RangeEqualsVisitor.java
Outdated
Show resolved
Hide resolved
e8af793 to
bcf8a01
Compare
Codecov Report
@@ Coverage Diff @@
## master #5091 +/- ##
==========================================
+ Coverage 87.64% 89.72% +2.08%
==========================================
Files 1014 674 -340
Lines 145922 101357 -44565
Branches 1437 0 -1437
==========================================
- Hits 127887 90942 -36945
+ Misses 17673 10415 -7258
+ Partials 362 0 -362
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tianchen92 - i'll merge after the tests complete.
|
thanks for the change, @tianchen92 |
…Vector interface Related to [ARROW-6211](https://issues.apache.org/jira/browse/ARROW-6211). This is a follow-up from apache#4933 public interface VectorVisitor<OUT, IN, EX extends Exception> {..} n ValueVector : public <OUT, IN, EX extends Exception> OUT accept(VectorVisitor<OUT, IN, EX> visitor, IN value) throws EX; Closes apache#5091 from tianchen92/ARROW-6211 and squashes the following commits: 15a5231 <tianchen> fix bce258e <tianchen> add equals in RangeEqualsVisitor dbaa81f <tianchen> ARROW-6211: Remove dependency on RangeEqualsVisitor from ValueVector interface Authored-by: tianchen <niki.lj@alibaba-inc.com> Signed-off-by: Pindikura Ravindra <ravindra@dremio.com>
Related to ARROW-6211.
This is a follow-up from #4933
public interface VectorVisitor<OUT, IN, EX extends Exception> {..}
n ValueVector :
public <OUT, IN, EX extends Exception> OUT accept(VectorVisitor<OUT, IN, EX> visitor, IN value) throws EX;