psql ctrl+f skips displaying of one record and displays skipping one line

From: vignesh C <vignesh21(at)gmail(dot)com>
To: Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: psql ctrl+f skips displaying of one record and displays skipping one line
Date: 2019-07-17 04:07:14
Message-ID: CALDaNm23mQ7rT9rYXwSfZog8zdD8exTUjUZ9fbB+LVaBtaGKSQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

One observation when we execute a select query having results more than the
screen space available and press ctrl+f to display the remaining records,
one of the record was not displayed and the message "...skipping one line"
was displayed.

I'm not sure if this is intentional behaviour.

Steps for the same:
postgres=# create table psqltest as select generate_series(1,50);
SELECT 50
postgres=# select * from psqltest;
generate_series
-----------------
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

*...skipping one line*
47
48
49
50
(50 rows)

Is this intended?

--
Regards,
vignesh
EnterpriseDB: http://www.enterprisedb.com

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Munro 2019-07-17 04:18:08 Re: psql ctrl+f skips displaying of one record and displays skipping one line
Previous Message Thomas Munro 2019-07-17 03:56:29 Re: POC: Cleaning up orphaned files using undo logs