Skip to content

Commit

Permalink
fix: length of key_hash variable in mp_stripdiffs.sas
Browse files Browse the repository at this point in the history
  • Loading branch information
^ committed Apr 29, 2024
1 parent 934629d commit cf70c33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -13523,6 +13523,7 @@ run;

%let ds5=%upcase(work.%mf_getuniquename(prefix=mpsd_merged));
data &ds5;
length key_hash $32;
merge &ds3 &ds4;
by key_hash;
if not missing(key_hash);
Expand Down
1 change: 1 addition & 0 deletions base/mp_stripdiffs.sas
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ run;

%let ds5=%upcase(work.%mf_getuniquename(prefix=mpsd_merged));
data &ds5;
length key_hash $32;
merge &ds3 &ds4;
by key_hash;
if not missing(key_hash);
Expand Down

0 comments on commit cf70c33

Please sign in to comment.