I wrote: 
 
>   COALESCE(a, b)
>  
> should be treated identically to:
>  
>   CASE WHEN a IS NULL THEN a ELSE b END
 
In case it's not obvious that the above has a typo, I meant:
 
  CASE WHEN a IS NOT NULL THEN a ELSE b END
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to