You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit e20310e causes a syntax error when upgrading Questionnaire from 3.5.0 or earlier with PostgreSQL.
With PostgreSQL, the UPDATE statement should be:
UPDATE mdl_questionnaire_response qr
SET questionnaireid =qa.qidFROM mdl_questionnaire_attempts qa
WHEREqr.id=qa.rid;
instead of using INNER JOIN.
The text was updated successfully, but these errors were encountered:
Commit e20310e causes a syntax error when upgrading Questionnaire from 3.5.0 or earlier with PostgreSQL.
With PostgreSQL, the UPDATE statement should be:
instead of using INNER JOIN.
The text was updated successfully, but these errors were encountered: