BUG #16862: Unexpected result of checking for null "IS NOT NULL" in function

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #16862: Unexpected result of checking for null "IS NOT NULL" in function
Дата
Msg-id 16862-c10a7401d2973a9b@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #16862: Unexpected result of checking for null "IS NOT NULL" in function  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #16862: Unexpected result of checking for null "IS NOT NULL" in function  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16862
Logged by:          Дмитрий Иванов
Email address:      firstdismay@gmail.com
PostgreSQL version: 12.5
Operating system:   Windows 10
Description:

Good day!
1. Create TABLE: "bpd"."group" AND view
2. Create FUNCTION:
    DECLARE: egroupV "bpd"."vgroup"%ROWTYPE; view
    DECLARE: egroupT "bpd"."group"%ROWTYPE; table
3. Retrieving data checking the result in function:
     SELECT * INTO egroupV FROM "bpd"."vgroup" WHERE id = iid;
     SELECT * INTO egroupT FROM "bpd"."group" WHERE id = iid;
        IF (egroupV IS NOT NULL) THEN => state OK
        IF (egroupT IS NOT NULL) THEN => state OK
        IF NOT(egroupV IS NULL) THEN => state OK
        IF NOT(egroupT IS NULL) THEN => state OK
4. ALTER TABLE "bpd"."group" ADD COLUMN
5. Retrieving data checking the result in function:
     SELECT * INTO egroup FROM "bpd"."vgroup" WHERE id = iid;
     SELECT * INTO egroupT FROM "bpd"."group" WHERE id = iid;
        IF (egroupV IS NOT NULL) THEN => state OK
        IF (egroupT IS NOT NULL) THEN => state NOT WORK???????????
        IF NOT(egroupV IS NULL) THEN => state OK
        IF NOT(egroupT IS NULL) THEN => state OK


В списке pgsql-bugs по дате отправления:

Предыдущее
От: Devrim Gündüz
Дата:
Сообщение: Re: BUG #16858: clang10-devel packages are missing in SLES15 SP2 in general
Следующее
От: Francisco Olarte
Дата:
Сообщение: Re: BUG #16860: Documentation: GUC Parameters are not explained