function field_test_query_efq_table_prefixing_test_alter

Implements hook_query_TAG_alter() for tag 'efq_table_prefixing_test'.

See also

Drupal\system\Tests\Entity\EntityFieldQueryTest::testTablePrefixing()

File

drupal/core/modules/field/tests/modules/field_test/field_test.module, line 229

Code

function field_test_query_efq_table_prefixing_test_alter(&$query) {

  // Add an additional join onto the entity base table. This will cause an
  // exception if the EFQ does not properly prefix the base table.
  $query
    ->join('test_entity', 'te2', '%alias.ftid = test_entity.ftid');
}