psql ctrl+f skips displaying of one record and displays skipping one line
От | vignesh C |
---|---|
Тема | psql ctrl+f skips displaying of one record and displays skipping one line |
Дата | |
Msg-id | CALDaNm23mQ7rT9rYXwSfZog8zdD8exTUjUZ9fbB+LVaBtaGKSQ@mail.gmail.com обсуждение исходный текст |
Ответы |
Re: psql ctrl+f skips displaying of one record and displays skippingone line
|
Список | 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?
В списке pgsql-hackers по дате отправления: