QueryFactory.php

Same filename in this branch
  1. 11.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
  2. 11.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  3. 11.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  4. 11.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  5. 11.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
Same filename and directory in other branches
  1. 9 core/modules/workspaces/src/EntityQuery/QueryFactory.php
  2. 9 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  3. 9 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  4. 9 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  5. 9 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  6. 9 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
  7. 8.9.x core/modules/workspaces/src/EntityQuery/QueryFactory.php
  8. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  9. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  10. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  11. 8.9.x core/lib/Drupal/Core/Entity/Query/QueryFactory.php
  12. 8.9.x core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  13. 8.9.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
  14. 10 core/modules/workspaces/src/EntityQuery/QueryFactory.php
  15. 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
  16. 10 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
  17. 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php
  18. 10 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
  19. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php

Namespace

Drupal\Core\Entity\Query\Sql\pgsql

File

core/lib/Drupal/Core/Entity/Query/Sql/pgsql/QueryFactory.php

View source
<?php

namespace Drupal\Core\Entity\Query\Sql\pgsql;

use Drupal\Core\Entity\Query\Sql\QueryFactory as BaseQueryFactory;

/**
 * PostgreSQL specific entity query implementation.
 *
 * To add a new query implementation extending the default SQL one, add
 * a service definition like pgsql.entity.query.sql and a factory class like
 * this. The system will automatically find the relevant Query, QueryAggregate,
 * Condition, ConditionAggregate, Tables classes in this namespace, in the
 * namespace of the parent class and so on. So after creating an empty query
 * factory class like this, it is possible to just drop in a class extending
 * the base class in this namespace and it will be used automatically but it
 * is optional: if a class is not extended the relevant default is used.
 *
 * @see \Drupal\Core\Entity\Query\QueryBase::getNamespaces()
 * @see \Drupal\Core\Entity\Query\QueryBase::getClass()
 */
class QueryFactory extends BaseQueryFactory {

}

Classes

Title Deprecated Summary
QueryFactory PostgreSQL specific entity query implementation.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.