Files
thrilltrack-explorer/supabase/migrations/20251112020447_3e5b866b-ce33-4cfe-9d69-8cc671963d44.sql
gpt-engineer-app[bot] 5b5bd4d62e 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.
2025-11-12 02:04:59 +00:00

4 lines
229 B
SQL

-- 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;