EMsnap opened a new pull request, #7590:
URL: https://github.com/apache/inlong/pull/7590

   ### Prepare a Pull Request
   - Fixes #7589 
   
   ### Motivation
   
   
   Now it's not capable for sort to generate multi insert sqls for one output 
with multiple inputs which is not acceptable for user cases.
   
   For instance, user may want to get data from multiple data sources, they can 
only use union operation for now. But union operation in flink is too heavy.
   
   We need to support generate sqls from one stream such that:
   
   Insert into sink select * from sourceA;
   Insert into sink select * from sourceB;
   
   ### Modifications
   
   Change the parseNode to ParseSingleNode because the recuisive method will be 
multi branches which is not suitable for reading. And move the input nodes 
parsing outside of parseNode method to make it easy for reading
   
   ### Verifying this change
   
   Run AllmigrateTestMultiRelations
   


-- 
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]

Reply via email to