1 field_test.module | field_test_query_efq_table_prefixing_test_alter(&$query) |
Implements hook_query_TAG_alter() for tag 'efq_table_prefixing_test'.
See also
EntityFieldQueryTestCase::testTablePrefixing()
File
- core/
modules/ field/ tests/ field_test/ field_test.module, line 265 - Helper module for the Field API tests.
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');
}