function SelectTest::testNullCondition
Tests that a comparison with NULL is always FALSE.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Database/ SelectTest.php, line 215
Class
- SelectTest
- Tests the Select query builder.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testNullCondition() {
$this->ensureSampleDataNull();
$names = $this->connection
->select('test_null', 'tn')
->fields('tn', [
'name',
])
->condition('age', NULL)
->execute()
->fetchCol();
$this->assertCount(0, $names, 'No records found when comparing to NULL.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.