// So instead we trick the filter into using the alias of the base table.
// See https://www.drupal.org/node/271833.
// If a relationship is set, we must use the alias it provides.
if (!
empty($this->relationship
)) { $this->tableAlias =
$this->relationship;
} // If no relationship, then use the alias of the base table.
else { $this->tableAlias =
$this->query->
ensureTable($this->view->storage->
get('base_table'
));
} $this->
addSubQueryJoin($this->value
);
}}