Github user jihoonson commented on a diff in the pull request:
https://github.com/apache/tajo/pull/465#discussion_r29231055
--- Diff: tajo-core/src/test/java/org/apache/tajo/storage/TestRowFile.java
---
@@ -128,8 +128,8 @@ public void test() throws IOException {
scanner = new RowFile.RowFileScanner(conf, schema, meta, fragment);
scanner.init();
while ((tuple=scanner.next()) != null) {
- if (!idSet.remove(tuple.get(0).asInt4())) {
- System.out.println("duplicated! " + tuple.get(0).asInt4());
+ if (!idSet.remove(tuple.getInt4(0))) {
+ System.out.println("duplicated! " + tuple.getInt4(0));
--- End diff --
Even though you didn't change this line, it looks unnecessary. Would you
remove it?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---