We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Although this is a very rare corner case, it would be nice to fix it.
//Text file = "AABBCC" val df = spark .read .format("cobol") .option("copybook_contents", copybook) .option("pedantic", "true") .option("record_format", "D") .load("MyTextFile.txt") df.show
Got
+---+ | A| +---+ | AB| | CC| +---+
Expected
+---+ | A| +---+ | AA| | BB| | CC| +---+
The text was updated successfully, but these errors were encountered:
#424 Fix ASCII reader corner case
27c0194
#424 Update README
cc86a47
#424 Add one more corner case
b7aba99
577422d
49de2b1
Successfully merging a pull request may close this issue.
Describe the bug
Although this is a very rare corner case, it would be nice to fix it.
To Reproduce
Got
Expected
The text was updated successfully, but these errors were encountered: