Talend combine two different data flows with same schema into one
I am using talend 6.1.1 and i am i have two components tmysqlinput and tfixedflowinput. Schema is same for both the components and i am trying to combine the data generated by these components.
for example: schema is like col1 and col2 output of tmysqlinput component is: 1,2 2,3 output of tixeflowinput component is: 3,4 4,5
Now output which i am expeting is like combination of both the ouputs. It should be like:
1,2 2,3 3,4 4,5
Please help me to combine the outputs of those two components.