yanlin-Lynn opened a new pull request #1386: [CALCITE-3259] Align 'Property' in the serialized xml string of RelXmlWriter. URL: https://github.com/apache/calcite/pull/1386 This PR is a improvement to refine the output serialized xml string of `RelXmlWriter`, make `Property` aligned. For example, for the sql of `select 1 + 2, 3 from (values (true))`, theĀ serialized xml string is like this: > <RelNode type="LogicalProject"> <Property name="EXPR$0"> +(1, 2) </Property> <Property name="EXPR$1"> 3 </Property> <Inputs> <RelNode type="LogicalValues"> <Property name="tuples"> [{ true }] </Property> <Inputs/> </RelNode> </Inputs> </RelNode> Better to make the end of `Property` in a new line and align it, like this below > <RelNode type="LogicalProject"> <Property name="EXPR$0"> +(1, 2) </Property> <Property name="EXPR$1"> 3 </Property> <Inputs> <RelNode type="LogicalValues"> <Property name="tuples"> [{ true }] </Property> <Inputs/> </RelNode> </Inputs> </RelNode>
---------------------------------------------------------------- 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] With regards, Apache Git Services
