mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 01:11:12 -05:00
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.
4 lines
229 B
SQL
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; |