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

fix: upcase showlog value in mp_getddl() to allow lowercase user entries

This commit is contained in:
2020-10-13 11:20:30 +02:00
parent f50cb03fd3
commit 5cb41041d9
2 changed files with 4 additions and 4 deletions

View File

@@ -2656,7 +2656,7 @@ run;
file &fref mod; file &fref mod;
put ');'; put ');';
run; run;
/* Create Unique Indexes, but only if they were not already defined within the Constraints section. */ /* Create Unique Indexes, but only if they were not already defined within the Constraints section. */
data _null_; data _null_;
*length ds $128; *length ds $128;
@@ -2836,7 +2836,7 @@ run;
%end; %end;
%end; %end;
%if &showlog=YES %then %do; %if %upcase(&showlog)=YES %then %do;
options ps=max; options ps=max;
data _null_; data _null_;
infile &fref; infile &fref;

View File

@@ -159,7 +159,7 @@ run;
file &fref mod; file &fref mod;
put ');'; put ');';
run; run;
/* Create Unique Indexes, but only if they were not already defined within the Constraints section. */ /* Create Unique Indexes, but only if they were not already defined within the Constraints section. */
data _null_; data _null_;
*length ds $128; *length ds $128;
@@ -339,7 +339,7 @@ run;
%end; %end;
%end; %end;
%if &showlog=YES %then %do; %if %upcase(&showlog)=YES %then %do;
options ps=max; options ps=max;
data _null_; data _null_;
infile &fref; infile &fref;