Hi!
By default PigUnit does override LOAD statements
Is there any possiblity to void this?
I'm using AvroStorage because of evolving schemas and I would like to write
in my tests:

--load test dataset
in = LOAD '$pathToIn' using AvroStorage();

--project the fields I need
inProjected = FOREACH in GENERATE f1, f2;

Right now I can't do this. PigUnit requires explicit field projection on
LOAD statement.

Reply via email to