Perché x IS NOT NULL
non è uguale a NOT x IS NULL
?
Questo codice:
CREATE TABLE bug_test (
id int,
name text
);
INSERT INTO bug_test
VALUES (1, NULL);
DO $$
DECLARE
v_bug_test bug_test;
BEGIN
RAISE NOTICE '%: %', v_bug_test, (v_bug_test IS NULL);
RAISE NOTICE '%: %', v_bug_test, (v_bug_test IS NOT NULL);
RAISE NOTICE '%: %', v_bug_test, (NOT v_bug_test IS NULL);
SELECT *
INTO v_bug_test
FROM bug_test
WHERE id = 1;
RAISE NOTICE '%: %', v_bug_test, (v_bug_test IS NULL);
RAISE NOTICE '%: %', v_bug_test, (v_bug_test IS NOT NULL);
RAISE NOTICE '%: %', v_bug_test, (NOT v_bug_test IS NULL);
END
$$;
DROP TABLE bug_test;
dà il seguente output:
(,): t
(,): f
(,): f
(1,): f
(1,): f ???
(1,): t
mentre mi aspetterei di ottenere questo risultato:
(,): t
(,): f
(,): f
(1,): f
(1,): t <<<
(1,): t
id
nella mia base di codice reale, ma solo dopo aver trascorso alcune ore a cercare un problema.
rec_variable IS NOT NULL
stia verificando se tutte le colonne NON sono NULL, mentre rec_variable IS NULL
sta controllando se tutte le colonne sono NULL. Quindi NOT rec_variable IS NULL
dà quello che mi aspettavo: una risposta alla domanda "c'è qualcosa dentro?".