Open tpetry opened 2 years ago
The IS DISTINCT FROM and IS NOT DISTINCT FROM terms simplify a query a lot for nullable columns:
IS DISTINCT FROM
IS NOT DISTINCT FROM
col IS DISTINCT FROM 'value' simplifies a query with nullable columns as it is a replacement for (col IS NULL OR col != 'value')
col IS DISTINCT FROM 'value'
(col IS NULL OR col != 'value')
The
IS DISTINCT FROM
andIS 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')