Sets a condition that the specified field be NOT NULL.
$field: The name of the field to check.
Drupal\Core\Database\Query\ConditionInterface The called object.
Overrides ConditionInterface::isNotNull
function isNotNull($field) {
  $this->query
    ->isNotNull($field);
  return $this;
}