Hi Working CSV processor is now done. SQL select statement can be used to manipulate CSV data. Input, CSV file:
ID:int,AMOUNT1:float,AMOUNT2:float,AMOUNT3:float 008, 10.05, 15.45, 89.99 100, 20.25, 25.25, 45.25 200, 34.05, 25.05, 75.05 select ID, AMOUNT1+AMOUNT2+AMOUNT3 as TOTAL from CSV.A where ID=100 result: ID TOTAL 100 90.75 https://issues.apache.org/jira/browse/NIFI-1280 Please review. Any feedback is highly welcome. Thanks toivo -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/Data-Manipulation-Language-for-Avro-JSON-CSV-etc-tp8967p10080.html Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.
