I am reading a csv file using
@serch=
EXTRACT
col1 int,
col2 string,
col3 string
FROM @"/datalake/in/in.csv"
USING Extractors.Csv();
OUTPUT @serch
TO @"/datalake/output/out.csv"
USING Outputters.Csv();
It is working fine but when we will do
select * from @serch or select col1,col2 from @serch
it is not working