You are here

public function IndexerBase::getQuery in Drupal 7 to 8/9 Module Upgrader 8

Overrides IndexerInterface::getQuery

1 method overrides IndexerBase::getQuery()
Functions::getQuery in src/Plugin/DMU/Indexer/Functions.php

File

src/IndexerBase.php, line 193

Class

IndexerBase
Base class for indexers.

Namespace

Drupal\drupalmoduleupgrader

Code

public function getQuery(array $fields = []) {
  return $this->db
    ->select($this->table)
    ->fields($this->table, $fields);
}