Skip to content

Commit

Permalink
fix: logic in mm_assigdirectlib to close #375
Browse files Browse the repository at this point in the history
  • Loading branch information
allan committed Aug 20, 2024
1 parent b7718fa commit 8485d9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 149,155 deletions.
3 changes: 2 additions & 1 deletion all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -14774,7 +14774,8 @@ filename __us2grp clear;

%local cur_engine;
%let cur_engine=%mf_getengine(&libref);
%if &cur_engine ne META and &cur_engine ne %then %do;
%if &cur_engine ne META and &cur_engine ne and %length(&open_passthrough)=0
%then %do;
%put NOTE: &libref already has a direct (&cur_engine) libname connection;
%return;
%end;
Expand Down
3 changes: 2 additions & 1 deletion meta/mm_assigndirectlib.sas
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@

%local cur_engine;
%let cur_engine=%mf_getengine(&libref);
%if &cur_engine ne META and &cur_engine ne %then %do;
%if &cur_engine ne META and &cur_engine ne and %length(&open_passthrough)=0
%then %do;
%put NOTE: &libref already has a direct (&cur_engine) libname connection;
%return;
%end;
Expand Down
Loading

0 comments on commit 8485d9e

Please sign in to comment.