Github user dongjoon-hyun commented on the issue:
https://github.com/apache/spark/pull/13763
Thank you, @felixcheung !
By the way, unfortunately, `DataFrameReader.scala` provides ORC and Parquet
feature differently.
For ORC, we can accept only one path now.
```
@scala.annotation.varargs
def parquet(paths: String*): DataFrame = {
format("parquet").load(paths: _*)
}
def orc(path: String): DataFrame = format("orc").load(path)
```
---
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.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]