@@ -127,13 +127,6 @@ public function getChangeSummary() {
return$summary;
}
/**
* {@inheritdoc}
*/
publicfunctionapplyUpdates(){
trigger_error('EntityDefinitionUpdateManagerInterface::applyUpdates() is deprecated in 8.7.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface::getChangeList() and execute each entity type and field storage update manually instead. See https://www.drupal.org/node/3034742.',E_USER_DEPRECATED);
@trigger_error('Passing a single revision ID to "\Drupal\Core\Entity\Sql\SqlContentEntityStorage::buildQuery()" is deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.0. An array of revision IDs should be given instead. See https://www.drupal.org/node/2924915.',E_USER_DEPRECATED);
}
$query->join($this->revisionTable,'revision',"revision.{$this->idKey} = base.{$this->idKey} AND revision.{$this->revisionKey} IN (:revisionIds[])",[':revisionIds[]'=>(array)$revision_ids]);
$query->join($this->revisionTable,'revision',"revision.{$this->idKey} = base.{$this->idKey} AND revision.{$this->revisionKey} IN (:revisionIds[])",[':revisionIds[]'=>$revision_ids]);