The keyword in the procedure's error message is "function", which should be "procedure"

Поиск
Список
Период
Сортировка
От qtds_126
Тема The keyword in the procedure's error message is "function", which should be "procedure"
Дата
Msg-id 29ea5666.6ce8.1835f4b4992.Coremail.qtds_126@126.com
обсуждение исходный текст
Ответы Re: The keyword in the procedure's error message is "function", which should be "procedure"  (Junwang Zhao <zhjwpku@gmail.com>)
Re: The keyword in the procedure's error message is "function", which should be "procedure"  (Junwang Zhao <zhjwpku@gmail.com>)
Список pgsql-bugs
font{ line-height: 1.6; } ul,ol{ padding-left: 20px; list-style-position: inside; }
Bug Report
When an existing procedure is created in the database, an error message is prompted for an existing procedure.
But the error message says "function" type.
PostgreSQL version
 11~15
Test SQL
create procedure proc_insert_t_pg_varchar(id int, v varchar)
language plpgsql
as $$
declare
iid int;
vv varchar(5);
begin
iid = id;
vv = v;
insert into t_pg_varchar values(iid, vv);
end;
$$;
Test result

Expected behavior
When an error occurs in procedure, the keyword is changed from "function" to "procedure".

Thanks.
Вложения

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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: Re: PANIC in heap_delete during ALTER TABLE
Следующее
От: Robins Tharakan
Дата:
Сообщение: Re: PANIC in heap_delete during ALTER TABLE