1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-03 15:40:05 +00:00

fix: moving cleanup to temp table for efficiency

This commit is contained in:
Allan Bowe
2021-11-26 11:55:55 +00:00
parent a6e9158814
commit 7bb089e269

View File

@@ -186,12 +186,12 @@ run;
run;
%end;
/* update main table */
proc append base=&outds data=&out_ds;
data &out_ds;
set &out_ds(where=(filepath ne ''));
run;
data &outds;
set &outds(where=(filepath ne ''));
/* update main table */
proc append base=&outds data=&out_ds;
run;
/* recursive call */