chore: fix for mpe_datastatus_libs
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 4m19s
Build / Build-and-test-development (pull_request) Successful in 8m45s

This commit is contained in:
allan
2025-06-11 14:15:50 +01:00
parent 69f687a85f
commit d1998422d2

View File

@@ -327,7 +327,10 @@ proc sql;
from statustabs
group by 1;
create table work.statuslibs as
select a.*, b.catalog_cnt
select coalesce(a.libref,b.libref) as libref,
a.libsize,
a.table_cnt,
b.catalog_cnt
from work.sumdsn a
full join work.sumcat b
on a.libref=b.libref;