Skip to content

Add index on clinic_activity_logs.numeric_value to fix performance issue-created-by-agentic #228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Add index on numeric_value column to improve query performance
CREATE INDEX IF NOT EXISTS idx_clinic_activity_logs_numeric_value ON clinic_activity_logs(numeric_value);

-- Add comment to document the index
COMMENT ON INDEX idx_clinic_activity_logs_numeric_value IS 'Index added to improve performance of queries filtering on numeric_value column. Related incident: 5aa1fb7a-3656-11f0-8db3-ca59c7e8e81d';