AA 역할 레거시 분석 smoke #6

Merged
Showing only changes of commit 724e41e56a - Show all commits

View file

@ -0,0 +1,17 @@
-- AA 역할 데이터 검증 쿼리
-- 역할 활성화 상태 검증
SELECT COUNT(*) AS inactive_roles
FROM role_config
WHERE role_id = 'AA'
AND enabled = false;
-- 매핑 규칙 존재 확인
SELECT COUNT(*) AS mapping_count
FROM mapping_rules
WHERE role_id = 'AA';
-- 스키마 검증 (메타데이터 확인)
SELECT table_name, column_name
FROM information_schema.columns
WHERE table_schema = 'public'
AND table_name LIKE 'aa_%';