Re: Bug of psql meta-command \sf & \sv

Поиск
Список
Период
Сортировка
От 咸�9�5
Тема Re: Bug of psql meta-command \sf & \sv
Дата
Msg-id tencent_3D9ADA8DCC85FE27FAE6F544ECBBAC5FA009@qq.com
обсуждение исходный текст
Ответ на Re: Bug of psql meta-command \sf & \sv  (Daniel Gustafsson <daniel@yesql.se>)
Ответы Re: Bug of psql meta-command \sf & \sv  (Japin Li <japinli@hotmail.com>)
Список pgsql-bugs
I don't think this meets the documentation's definition of an identifier.  Semicolons should not be used this way here.(Excuse me, I need to test the email function.)

 


------------------ Original ------------------
From: "Daniel Gustafsson" <daniel@yesql.se>;
Date: Wed, Sep 27, 2023 05:13 PM
To: "Jet Zhang"<jet.cx.zhang@hotmail.com>;
Cc: "pgsql-bugs@lists.postgresql.org"<pgsql-bugs@lists.postgresql.org>;
Subject: Re: Bug of psql meta-command \sf & \sv

> On 27 Sep 2023, at 11:06, Jet Zhang <jet.cx.zhang@hotmail.com> wrote:
>
> Hi there,

> The psql meta-commands \sf and \sv have a minor bug, for example:

> postgres=# CREATE PROCEDURE test () AS $$ BEGIN NULL; END; $$ LANGUAGE plpgsql;   -- create a procedure
> postgres=# \sf test
> CREATE OR REPLACE PROCEDURE public.test()
> LANGUAGE plpgsql
> AS $procedure$ BEGIN NULL; END; $procedure$

> We can use \sf to check the souce of test, but if we use:
> postgres=# \sf test;
> 2023-09-27 16:51:58.632 CST [3460153] ERROR:  function "test;" does not exist at character 8
> 2023-09-27 16:51:58.632 CST [3460153] STATEMENT:  SELECT 'test;'::pg_catalog.regproc::pg_catalog.oid
> ERROR:  function "test;" does not exist

> The \sf feedback an error.

This is not a bug, "test;" is a valid name which is distinct from test.
Semi-colon is not a meta-command terminator.

postgres=# create function "test;"() returns text as $$ begin null; end; $$ language plpgsql;
CREATE FUNCTION
postgres=# \sf test
ERROR:  function "test" does not exist
postgres=# \sf test;
CREATE OR REPLACE FUNCTION public."test;"()
 RETURNS text
 LANGUAGE plpgsql
AS $function$ begin null; end; $function$
postgres=#

--
Daniel Gustafsson




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

Предыдущее
От: Daniel Gustafsson
Дата:
Сообщение: Re: Memory leak on subquery as scalar operand
Следующее
От: Japin Li
Дата:
Сообщение: Re: Bug of psql meta-command \sf & \sv