Fix analyze_data_completeness search_path

Update the analyze_data_completeness function to set search_path = public to address security linter warning and ensure consistent function execution without elevated schema access. No behavioral changes beyond security context.
This commit is contained in:
gpt-engineer-app[bot]
2025-11-12 02:04:59 +00:00
parent d435bda06a
commit 5b5bd4d62e

View File

@@ -0,0 +1,4 @@
-- Fix security linter warning: Set search_path for analyze_data_completeness function
-- This prevents potential security issues from search_path manipulation
ALTER FUNCTION analyze_data_completeness() SET search_path = public;