juliuszsompolski commented on code in PR #47790:
URL: https://github.com/apache/spark/pull/47790#discussion_r1721480967
##########
python/pyspark/sql/tests/test_datasources.py:
##########
@@ -211,7 +211,7 @@ def test_checking_csv_header(self):
]
)
df = (
- self.spark.read.option("header", "true")
+ self.spark.read.option("header", "true").option("quote", None)
Review Comment:
Thanks, yeah, the test with None will test it good. The problem with testing
"True" is that most places tolerate case-insensitive "True" string (I ran into
this bug because Delta CDC reader didn't, but I'm fixing it separately in Delta)
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]