mirror of
https://github.com/sasjs/core.git
synced 2026-01-14 20:10:05 +00:00
fix: comma placement in mp_stackdiffs.sas
This commit is contained in:
2
all.sas
2
all.sas
@@ -10272,8 +10272,8 @@ select distinct tgtvar_nm into: missvars separated by ' '
|
|||||||
by key_hash;
|
by key_hash;
|
||||||
if _n_=1 then put 'proc sql;';
|
if _n_=1 then put 'proc sql;';
|
||||||
if first.key_hash then put "update &outmod set " / ' '@@;
|
if first.key_hash then put "update &outmod set " / ' '@@;
|
||||||
else put ' ,'@@;
|
|
||||||
if is_diff=1 then do;
|
if is_diff=1 then do;
|
||||||
|
if not first.key_hash then put ' ,'@@;
|
||||||
if tgtvar_type='C' then do;
|
if tgtvar_type='C' then do;
|
||||||
length qstr $32767;
|
length qstr $32767;
|
||||||
qstr=quote(trim(NEWVAL_CHAR));
|
qstr=quote(trim(NEWVAL_CHAR));
|
||||||
|
|||||||
@@ -561,8 +561,8 @@ select distinct tgtvar_nm into: missvars separated by ' '
|
|||||||
by key_hash;
|
by key_hash;
|
||||||
if _n_=1 then put 'proc sql;';
|
if _n_=1 then put 'proc sql;';
|
||||||
if first.key_hash then put "update &outmod set " / ' '@@;
|
if first.key_hash then put "update &outmod set " / ' '@@;
|
||||||
else put ' ,'@@;
|
|
||||||
if is_diff=1 then do;
|
if is_diff=1 then do;
|
||||||
|
if not first.key_hash then put ' ,'@@;
|
||||||
if tgtvar_type='C' then do;
|
if tgtvar_type='C' then do;
|
||||||
length qstr $32767;
|
length qstr $32767;
|
||||||
qstr=quote(trim(NEWVAL_CHAR));
|
qstr=quote(trim(NEWVAL_CHAR));
|
||||||
|
|||||||
Reference in New Issue
Block a user