fix: load_ref var
Build / Build-and-ng-test (pull_request) Failing after 58s Details

This commit is contained in:
^ 2024-04-30 12:34:22 +01:00
parent a4028562ce
commit aaad9f7207
1 changed files with 2 additions and 2 deletions

View File

@ -44,10 +44,10 @@
%let chk=0;
proc sql noprint;
select count(*) into: chk from &dc_libref..mpe_audit
where load_ref="&table";
where load_ref="&load_ref";
%if &chk=0 %then %do;
%let allow_restore=NO;
%let reason=No entry for &table in MPE_AUDIT;
%let reason=No entry for &load_ref in MPE_AUDIT;
%return;
%end;