Skip to content
Snippets Groups Projects

Issue #3421538: `system` is a keyword in MySQL 8 and should not be used

Open Himanshu Jhaloya requested to merge issue/missing_module-3421538:3421538 into 7.x-1.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -12,7 +12,7 @@ function missing_module_find_missing($only_enabled = FALSE) {
$missing = array();
// Select all active modules from current database.
$query = db_select('system')->fields('system', array('filename', 'name', 'status', 'info'));
$query = db_select('system', 'sys')->fields('sys', array('filename', 'name', 'status', 'info'));
if ($only_enabled) {
$query->condition('status', '1', '=');
Loading