-
Notifications
You must be signed in to change notification settings - Fork 37
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
[v5.1.0] Database error when upgrading from v4.5.0 to v5.1.0 #447
Comments
The fact that a reaload works surprises me too. ... Ah! the code that gave the error was inside an if (!$dbman->table_exists($table)) { and when you reload, the table will exist, so it will skip that bit of hte upgrade, which will leave your system in a bad state. Was this a test server? Can you restore your backup and try the upgrade again? (perhaps after adding some debugging output, to work out how that column could be null. That still seems impossible to me.) (The checks under System administration > Development > XMLDB editor, do any of those check that the column NOT NULL in your database, acutally match what it is supposed to be? Or, could you manually check the structure of the studentquiz_question matches what it should be?) |
Sadly, the system was both a test server with "uncritical data" and I didn't do a backup beforehand because it didn't matter to us very much. But I can try and check with our database admins, they should be able to produce a database backup from the last 24 hours... |
So the creation of tables is done atomically and in a transaction? Well, shouldn't the "creating table" code |
Postgres can do DML statements (like create table) in transactnios, but most other DB can't. Yes, the upgrade blocks should be separate. |
I added a PR which doesn't fix the NULL problem, but should at least prevent further resulting data inconsistencies. |
Aside: js files seem to be stale... |
We've restored the database via WAL log and just didn't update the plugin for now. Looking at the contents of studentquiz_question, I can't seem to find a NULL entry. Strange... EDIT: At least I found the record that possibly was referenced avobe: questionid;state;createdby;timecreated |
Debugged it. The cause is:
That field is only added here: https://github.com/studentquiz/moodle-mod_studentquiz/blob/main/db/upgrade.php#L1118 moodle-mod_studentquiz/db/upgrade.php Lines 1414 to 1418 in a07f09a
and the old field is finally dropped here: https://github.com/studentquiz/moodle-mod_studentquiz/blob/main/db/upgrade.php#L1620 But of course, if one uses the constantly evolving code in the upgrade procedure, this was bound to happen sometime. I gotta remember that for my plugins: "Do not use 'normal' API in plugin updates"... EDIT: I'll do a PR for this, too...will replace the utils function with creating "at the time correct" data objects... |
Here's a workaround for anyone looking to update in the meantime. So one can update from v4.5.0 to v4.6.0 (the API is still consistent there), and then update from v4.6.0 to v5.1.0. |
Okay, I just updated the existing PR with a second commit that doesn't use the utils method anymore. |
Sorry that I am ingoring your! This turned into a very busy week, and I just have not had time. Thank you for continuing to work on this, and I hope I will have time to look next week. |
No worries. I think I'm done, though. |
Any progress here? |
In order to be able to upgrade to version 2022122200 i did the below image edits. It is not optimal. Is there other workaround? I did this because of message. !!! Erro ao gravar na base de dados !!! [array ( |
This error also occurs with plugin version v4.7.1 (2022052401). |
Ran into this problem again when upgrading another instance of ours. @timhunt Can't you at least merge the code that splits table creation from data migration to make the error reproducible and the database inconsistency a smaller problem? |
Merge it into which branch? |
By the way, applying the fix above to a non-upgraded Moodle removed the error when upgrading.
Um, I'd gather "main"? The commits don't introduce new features but slightly alter the upgrade procedure to split the studentquiz_state_history table creation and data migration to it, so that could IMHO just be merged to at least prevent data inconsistencies. The second commit replaces the utils::question_save_action calls with what was at that point in time the function body. This way the upgrade flow is maintained and nothing in this flow has been functionally changed. Do you need me to do further tests to be able to determine whether this PR can be used? |
This came up during an upgrade:
Reloading the upgrade page led to studentquiz finishing the upgrade, which surprised us. I thought we would get the same error again, because of rollbacked transactions (we're using Postgres).
The underlying Moodle instance had previously been upgraded from 3.11.11 to 4.1.1, but mod_studentquiz had been left at v4.5.0 until we separately updated the plugin.
The cause looks to be around here: https://github.com/studentquiz/moodle-mod_studentquiz/blob/main/db/upgrade.php#L887-L938.
A questionid from studentquiz_question is NULL ? That's strange, shouldn't happen...?
The text was updated successfully, but these errors were encountered: