dongjoon-hyun opened a new pull request #29707:
URL: https://github.com/apache/spark/pull/29707


   ### What changes were proposed in this pull request?
   
   This PR aims to fix indeterministic behavior on DataStreamReader/Writer 
options like the following.
   ```scala
   scala> spark.readStream.format("parquet").option("paTh", "1").option("PATH", 
"2").option("Path", "3").option("patH", "4").option("path", "5").load()
   org.apache.spark.sql.AnalysisException: Path does not exist: 1;
   ```
   
   ### Why are the changes needed?
   
   This will make the behavior deterministic.
   
   ### Does this PR introduce _any_ user-facing change?
   
   Yes, but the previous behavior is indeterministic.
   
   ### How was this patch tested?
   
   Pass the newly test cases.


----------------------------------------------------------------
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:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to