Details
-
Sub-task
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
4.0.0
Description
The current parser does not recognize CDATA sections and thus will read row tags that are enclosed within a CDATA section. The expected behavior is for none of the following rows to be read, but they are all read.
// BUG: rowTag in CDATA section val xmlString="""<?xml version="1.0" encoding="UTF-8" ?> <test><![CDATA[ <elem id="1" /> <elem id="2" > </elem> <elem> <id>3</id> </elem> ]]> </test>