You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by GitBox <gi...@apache.org> on 2020/04/30 03:59:01 UTC

[GitHub] [carbondata] xubo245 commented on a change in pull request #3273: [CARBONDATA-3342] Fix the IllegalArgumentException when using filter and result is null.

xubo245 commented on a change in pull request #3273:
URL: https://github.com/apache/carbondata/pull/3273#discussion_r417739818



##########
File path: sdk/sdk/src/main/java/org/apache/carbondata/sdk/file/CarbonReader.java
##########
@@ -87,9 +91,13 @@ public boolean hasNext() throws IOException, InterruptedException {
         readers.set(index, null);
         index++;
         currentReader = readers.get(index);
-        return currentReader.nextKeyValue();
+        boolean result = currentReader.nextKeyValue();

Review comment:
       currentReader hasn't hasNext() method. 




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org