Skip to content

Commit

Permalink
fix: upcase showlog value in mp_getddl() to allow lowercase user entries
Browse files Browse the repository at this point in the history
  • Loading branch information
allanbowe committed Oct 13, 2020
1 parent f50cb03 commit 5cb4104
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -2656,7 +2656,7 @@ run;
file &fref mod;
put ');';
run;
/* Create Unique Indexes, but only if they were not already defined within the Constraints section. */
data _null_;
*length ds $128;
Expand Down Expand Up @@ -2836,7 +2836,7 @@ run;
%end;
%end;
%if &showlog=YES %then %do;
%if %upcase(&showlog)=YES %then %do;
options ps=max;
data _null_;
infile &fref;
Expand Down
4 changes: 2 additions & 2 deletions base/mp_getddl.sas
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ run;
file &fref mod;
put ');';
run;

/* Create Unique Indexes, but only if they were not already defined within the Constraints section. */
data _null_;
*length ds $128;
Expand Down Expand Up @@ -339,7 +339,7 @@ run;

%end;
%end;
%if &showlog=YES %then %do;
%if %upcase(&showlog)=YES %then %do;
options ps=max;
data _null_;
infile &fref;
Expand Down

0 comments on commit 5cb4104

Please sign in to comment.