AA 역할 레거시 분석 smoke (runtime-role-matrix-live-20260714105818-v9-aa-001)
All checks were successful
ci / test (pull_request) Successful in 1m23s

This commit is contained in:
forge-bot 2026-07-14 11:06:21 +00:00
parent f420c5c364
commit 724e41e56a

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_%';