Github user dongjoon-hyun commented on a diff in the pull request:
https://github.com/apache/orc/pull/160#discussion_r134293310
--- Diff: java/mapreduce/src/java/org/apache/orc/mapred/OrcInputFormat.java
---
@@ -58,7 +58,7 @@
*/
public static boolean[] parseInclude(TypeDescription schema,
String columnsStr) {
- if (columnsStr == null ||
+ if (StringUtils.isBlank(columnsStr) ||
--- End diff --
BTW, is this enough for ORC column selection to return all null fields?
It looks to me that it returns all value fields. I mean without column
selection.
---
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.
---