Subject | Re: [ib-support] Auditing updates |
---|---|
Author | Svein Erling Tysvær |
Post date | 2002-02-12T09:32:48Z |
>I believe that code as you have it would end up logging as a changeNo, it wouldn't. Comparisons with NULL evaluates as follows:
>every case where OLD is NULL and NEW is NULL (i.e., no change at all).
NULL = 1 false
NULL = NULL false
NULL <> 1 false
NULL <> NULL false
NULL is a state meaning that you don't know and doesn't match anything.
Set