Verified Commit fc78db52 authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3159101 by Wim Leers: SQLBase::mapjoinable still does not support SQLite

parent 11ec9ee2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -452,7 +452,7 @@ protected function mapJoinable() {
    }

    foreach (['username', 'password', 'host', 'port', 'namespace', 'driver'] as $key) {
      if (isset($source_database_options[$key])) {
      if (isset($source_database_options[$key]) && isset($id_map_database_options[$key])) {
        if ($id_map_database_options[$key] != $source_database_options[$key]) {
          return FALSE;
        }