public function TestSqlBase::mapJoinable in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\TestSqlBase::mapJoinable()
- 10 core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\TestSqlBase::mapJoinable()
Checks if we can join against the map table.
This function specifically catches issues when we're migrating with unique sets of credentials for the source and destination database.
Return value
bool TRUE if we can join against the map table otherwise FALSE.
Overrides SqlBase::mapJoinable
File
- core/
modules/ migrate/ tests/ src/ Unit/ SqlBaseTest.php, line 199 - Contains \Drupal\Tests\migrate\Unit\SqlBaseTest.
Class
- TestSqlBase
- Creates a base source class for SQL migration testing.
Namespace
Drupal\Tests\migrate\UnitCode
public function mapJoinable() {
return parent::mapJoinable();
}