> The store statements in the first section will only get executed twice.

Do you mean "will only get executed once" here?

> But if you use any of the relations in the first section in the second 
> section, those relations will be recomputed. So that is something you might 
> want to avoid. Extended syntax for supporting this use case will solve such 
> issues with this workaround.
> 
> In example below, the inp and filt relations get computed twice.
> 
> 
> inp = load 'x';
> filt = filter inp by $0 > 0;
> store filt into 'out1';
> 
> exec;
> 
> filter_more = filter filt by $1 > 0;
> store filter_more into 'out2';
> 
> exec;


i.e. in here inp, filt would be recomputed twice but store would be executed 
only once. 

Reply via email to