The `IS DISTINCT FROM` and `IS NOT DISTINCT FROM` terms simplify a query a lot for nullable columns: `col IS DISTINCT FROM 'value'` simplifies a query with nullable columns as it is a replacement for `(col IS NULL OR col != 'value')`