Merge pull request 'fix: updating logic for REPLACE loadtype' (#25) from replace into development

Reviewed-on: #25
This commit is contained in:
allan 2023-08-25 11:19:16 +00:00
commit b64bbe91d4

View File

@ -142,10 +142,14 @@ run;
%mp_lockanytable(UNLOCK,lib=&lib,ds=&ds,ctl_ds=&dclib..mpe_lockanytable)
%end;
%else %do;
/* is full replace so treat everything as a mod in diff screen */
data work.outds_mod work.outds_add work.outds_del;
/* is full replace so treat all staged records as new in diff screen */
data work.outds_mod work.outds_add ;
set work.&staging_ds;
output work.outds_mod; /* _add and _del will be empty */
output work.outds_add;
run;
/* previous table will be considered fully deleted */
data work.outds_del;
set &lib..&ds;
run;
%end;
%end;