Hello
You need covert null to "" first, add another tMap to do this.eg:
tFileInputDelimited-row1-tMap--tMap-row2--tLogRow
On the first tMap, convert null to "" like this:
on the expression of col3 column, type in
row1.col3==null?"":row1.col3
on the second tMap, concatenate columns:
row2.col1+" "+row2.col2+" "+row2.col3
Best regards
shong