[PATCH] Tiny optmization or is a bug?

Поиск
Список
Период
Сортировка
От Ranier Vilela
Тема [PATCH] Tiny optmization or is a bug?
Дата
Msg-id MN2PR18MB292727E0CD0F7F220C4B07F9E3490@MN2PR18MB2927.namprd18.prod.outlook.com
обсуждение исходный текст
Ответы Re: [PATCH] Tiny optmization or is a bug?
Список pgsql-hackers
Hi,
Maybe this is a real bug.

The assignment has no effect, or forget dereferencing it?

Best regards.
Ranier Vilela

--- \dll\postgresql-12.0\a\backend\commands\lockcmds.c    Mon Sep 30 17:06:55 2019
+++ lockcmds.c    Fri Nov 22 18:45:01 2019
@@ -285,7 +285,7 @@

     LockViewRecurse_walker((Node *) viewquery, &context);

-    ancestor_views = list_delete_oid(ancestor_views, reloid);
+    list_delete_oid(ancestor_views, reloid);

     table_close(view, NoLock);
 }

Вложения

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

Предыдущее
От: Ranier Vilela
Дата:
Сообщение: [PATCH] Tiny optmization.
Следующее
От: Ranier Vilela
Дата:
Сообщение: [PATCH] Tiny optimization.