BUG #14916: psql \r is invalid in PostgreSQL 10 - Mailing list pgsql-bugs

From xyh@nvn.xyz
Subject BUG #14916: psql \r is invalid in PostgreSQL 10
Date
Msg-id 20171117025734.1473.85669@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #14916: psql \r is invalid in PostgreSQL 10  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: Amit Langote
Date:
Subject: Re: BUG #14915: Create sub-partitioning using GENERATED ALWAYS ASIDENTITY will lead to system collapse.
Next
From: Tom Lane
Date:
Subject: Re: BUG #14916: psql \r is invalid in PostgreSQL 10