Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Using Laravel 5.7, it seems Eloquent Query builder is adding a (redundant?) is not null - why is this?

Contact model

Test code

Output - where opportunities.contact_id is not null seems to be unnecessary? Output

question from:https://stackoverflow.com/questions/65950501/laravel-5-7-query-builder-adding-redundant-is-not-null-to-querys-sql

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
920 views
Welcome To Ask or Share your Answers For Others

1 Answer

File Illuminate/Database/Eloquent/Relations/HasOneOrMany.php:

/**
 * Set the base constraints on the relation query.
 *
 * @return void
 */
public function addConstraints()
{
    if (static::$constraints) {
        $this->query->where($this->foreignKey, '=', $this->getParentKey());

        $this->query->whereNotNull($this->foreignKey);
    }
}

This was the bug fix: https://github.com/laravel/framework/commit/1e80162e9a3a4c42a0079bd9f34e785197a66c07


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...