We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some optimizations were done in our production databases but not submitted to the migration sql
The text was updated successfully, but these errors were encountered:
I added three indexes into our local database which improved performance:
ALTER TABLE sample ADD INDEX idx_SAMPLE_STABLE_ID (STABLE_ID), ALGORITHM=INPLACE; ALTER TABLE patient ADD INDEX idx_PATIENT_STABLE_ID (STABLE_ID), ALGORITHM=INPLACE; ALTER TABLE clinical_event_data ADD INDEX idx_data_prefix (VALUE(767)), ALGORITHM=INPLACE;
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Some optimizations were done in our production databases but not submitted to the migration sql
The text was updated successfully, but these errors were encountered: