mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 19:06:41 +02:00
MDL-42882 upgrade: improved SQL query
Kudos to Tim Hunt who came up with this, on mysql with 4 milion records (and a fast SSD) the performance difference is: Original: 36.83 sec New query: 8.63 sec
This commit is contained in:
parent
5f38edeefd
commit
b7f4097043
1 changed files with 7 additions and 10 deletions
|
@ -2096,16 +2096,13 @@ function upgrade_fix_missing_root_folders() {
|
|||
global $DB, $USER;
|
||||
|
||||
$transaction = $DB->start_delegated_transaction();
|
||||
$sql = "SELECT distinct f1.contextid, f1.component, f1.filearea, f1.itemid
|
||||
FROM {files} f1 left JOIN {files} f2
|
||||
ON f1.contextid = f2.contextid
|
||||
AND f1.component = f2.component
|
||||
AND f1.filearea = f2.filearea
|
||||
AND f1.itemid = f2.itemid
|
||||
AND f2.filename = '.'
|
||||
AND f2.filepath = '/'
|
||||
WHERE (f1.component <> 'user' or f1.filearea <> 'draft')
|
||||
and f2.id is null";
|
||||
|
||||
$sql = "SELECT contextid, component, filearea, itemid
|
||||
FROM {files}
|
||||
WHERE (component <> 'user' OR filearea <> 'draft')
|
||||
GROUP BY contextid, component, filearea, itemid
|
||||
HAVING MAX(CASE WHEN filename = '.' AND filepath = '/' THEN 1 ELSE 0 END) = 0";
|
||||
|
||||
$rs = $DB->get_recordset_sql($sql);
|
||||
$defaults = array('filepath' => '/',
|
||||
'filename' => '.',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue