I have an XML file in the following structure: <root> <a> <b> <c> <d> <e> <f> <g> value1 </g> </f> <f> <g> value2 </g> </f> </e> </d> </c> </b> </a> <a> <b> <c> <d> <e> <f> <g> value3 </g> </f> <f> <g> value4 </g> </f> </e> </d> </c> </b> </a> </root> Since the element "g" is repeating within the following observation boundary/table-path: /root/a, when I set the column-path in my XML map equal to: /root/a/b/c/d/e/f/g, I expect (based on this webpage) the value of column g for the first observation to equal the concatenation value1value2. However, the first observation has value of column g equal to value1, which also happens if I set the table-path/observation boundary equal to any of: /root/a, /root/a/b, ..., /root/a/b/.../e. If I set the observation boundary/table-path in my XML map to: /root/a/b/.../e/f I get value1 and value2 in separate observations/rows, as expected. Does anyone know how I can get the concatenation I want to work?
... View more