protected function FilterCombineTest::schemaDefinition in Views (for Drupal 7) 8.3
Allow {views_test_data}.job to be NULL.
Overrides ViewTestBase::schemaDefinition
File
- lib/
Drupal/ views/ Tests/ Handler/ FilterCombineTest.php, line 105 - Definition of Drupal\views\Tests\Handler\FilterCombineTest.
Class
- FilterCombineTest
- Tests the combine filter handler.
Namespace
Drupal\views\Tests\HandlerCode
protected function schemaDefinition() {
$schema = parent::schemaDefinition();
unset($schema['views_test_data']['fields']['job']['not null']);
return $schema;
}