BUG #14916: psql \r is invalid in PostgreSQL 10

Поиск
Список
Период
Сортировка
От xyh@nvn.xyz
Тема BUG #14916: psql \r is invalid in PostgreSQL 10
Дата
Msg-id 20171117025734.1473.85669@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #14916: psql \r is invalid in PostgreSQL 10  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      14916
Logged by:          Yunhe Xu
Email address:      xyh@nvn.xyz
PostgreSQL version: 10.1
Operating system:   Red Hat Enterprise Linux Server release 6.7
Description:

Hello,
In PostgreSQL 10.0 and 10.1 .
psql \r is invalid.

postgres=# select count(*) from abc;
 count 
-------
     0
(1 row)

postgres=# \r
Query buffer reset (cleared).
postgres=# \p
select count(*) from abc;

In 9.4.14,don't have this problem.
postgres=# select count(*) from abc;
 count 
-------
     0
(1 row)

postgres=# \r
Query buffer reset (cleared).
postgres=# \p
Query buffer is empty.

Kind regards.
Yunhe



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

Предыдущее
От: Amit Langote
Дата:
Сообщение: Re: BUG #14915: Create sub-partitioning using GENERATED ALWAYS ASIDENTITY will lead to system collapse.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #14916: psql \r is invalid in PostgreSQL 10