You are here

protected function ViewsHandlerFilterCombineTest::schemaDefinition in Views (for Drupal 7) 7.3

Allow {views_test}.job to be NULL.

Overrides ViewsSqlTest::schemaDefinition

File

tests/handlers/views_handler_filter_combine.test, line 104
Definition of ViewsHandlerFilterCombineTest.

Class

ViewsHandlerFilterCombineTest
Tests the combine filter handler.

Code

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