You are here

public function TestSqlBase::mapJoinable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\TestSqlBase::mapJoinable()

Check 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 142
Contains \Drupal\Tests\migrate\Unit\SqlBaseTest.

Class

TestSqlBase

Namespace

Drupal\Tests\migrate\Unit

Code

public function mapJoinable() {
  return parent::mapJoinable();
}