You are here

protected function FilterCombineTest::schemaDefinition in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/src/Tests/Handler/FilterCombineTest.php \Drupal\views\Tests\Handler\FilterCombineTest::schemaDefinition()

Allow {views_test_data}.job to be NULL.

Overrides ViewKernelTestBase::schemaDefinition

File

core/modules/views/src/Tests/Handler/FilterCombineTest.php, line 155
Contains \Drupal\views\Tests\Handler\FilterCombineTest.

Class

FilterCombineTest
Tests the combine filter handler.

Namespace

Drupal\views\Tests\Handler

Code

protected function schemaDefinition() {
  $schema = parent::schemaDefinition();
  unset($schema['views_test_data']['fields']['job']['not null']);
  return $schema;
}