1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-06 17:10:05 +00:00

fix: comma placement in mp_stackdiffs.sas

This commit is contained in:
munja
2022-01-25 00:30:28 +01:00
parent 2f49738cf9
commit c160b5058b
2 changed files with 2 additions and 2 deletions

View File

@@ -10272,8 +10272,8 @@ select distinct tgtvar_nm into: missvars separated by ' '
by key_hash;
if _n_=1 then put 'proc sql;';
if first.key_hash then put "update &outmod set " / ' '@@;
else put ' ,'@@;
if is_diff=1 then do;
if not first.key_hash then put ' ,'@@;
if tgtvar_type='C' then do;
length qstr $32767;
qstr=quote(trim(NEWVAL_CHAR));