Change record status: 
Project: 
Introduced in branch: 
8.x
Description: 

In Drupal 7, $query->condition('field', NULL) matched rows when the field contained a NULL. However, as SQL (despite being called a relational database) is employing a 3VL, any logical operation on a NULL value results in NULL so this behavior is wrong. This is fixed in D8 and $query->condition('field', NULL) will never match anything. Use $query->isNull('field'); instead.

Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done