Everybody who uses psql
uses less
pager. It is working well, but there is not any special
support for tabular data. I found few projects, but no one was completed for this purpose.
I decided to write some small specialized pager for usage as psql
pager.
This pager can be used from the following clients command line clients too:
- possibility to freeze first few rows, first few columns
- possibility to sort data by specified numeric column
- possibility to use fancy colors - like
mcview
orFoxPro
- http://okbob.blogspot.com/2019/12/pspg-themes-what-you-use-it.html
-a
menu will use ascii borders-b
black/white theme-X
doesn't clean screen on the end-s N
use theme (default theme is mc theme)-c N
freeze first N columns-f file
open file (default stdin)--no-watch-file
don't watch changes of file--force-uniborder
replace ascii border by unicode borders-g --hilite-search
don't highlight lines for searches-G --HILITE-SEARCH
don't highlight lines for searches ever--help
show this help-i --ignore-case
ignore case in searches that do not contain uppercase-I --IGNORE-CASE
ignore case in all searches--less-status-bar
status bar like less pager--line-numbers
show line number column--no-mouse
without own mouse handling (cannot be changed in app)--no-sound
without sound effect-F
,--quit-if-one-screen
quit if content is one screen-V
,--version
show version--about
show info about authors--csv
input format is csv--tsv
input format is tsv--double-header
header line is doubled--border
border used for formatted csv--csv-separator
special char used as separator inside csv documents--null striing
null string (default "")--ni
not interactive mode (format csv to table and quit)--no-cursor
the line cursor will be hidden--no-commandbar
the bottom bar will be hidden--no-topbar
the top bar will be hidden--no-bars
both bars will be hidden--no-sigint-search-reset
sigint is not used to reset searching--tabular-cursor
cursor is displayed only for table--only-for-tables
use std pager when content is not a table--bold-labels
bold font for row, column labels--bold-cursor
bold font for cursor--vertical-cursor
show column cursor--on-sigint-exit
double escape or ctrl c ending pager--quit-on-f3
exit on press F3 (like mc viewer)--skip-colums-like
space separated list of ignored columns (only for csv and tsv format)-q
,--query
execute query-w
,--watch n
repeat query execution every time sec-d
,--dbname
database name-h
,--host
database host name-p
,--port
database port-U
,--username
database user name-W
,--password
force password prompt--pgcli-fix
used for fixing some pgcli related issues
Options can be passed inside env variable PSPG
too.
- black & white
- Midnight Commander like
- FoxPro like
- Pdmenu like
- White theme
- Mutt like
- PCFand like
- Green theme
- Blue theme
- Word Perfect like
- Low contrast blue theme
- Dark cyan/black mode
- Paradox like
- dBase IV retro style
- dBase IV retro style (Magenta labels)
- Red white theme
- Simple theme
- Solarized dark theme
- Solarized light theme
- Gruvbox light theme
- Tao Light theme
see http://okbob.blogspot.cz/2017/07/i-hope-so-every-who-uses-psql-uses-less.html
- 0, 1, 2, 3, .., 9 - freeze first N columns
- KEY_UP, k - navigate backward by one line
- KEY_DOWN, j - navigate forward by one line
- KEY_LEFT, h - scroll to left
- KEY_RIGHT, l - scroll to right
- Ctrl+Home, g - go to the start of file
- Ctrl+End, G - go to the end of file
- Alt+l - go to line number
- H - go to first line of current window
- M - go to half of current window
- L - go to end of current window
- PPAGE, Ctrl+b - backward one window
- NPAGE, Ctrl+f, space - forward one window
- HOME, ^ - go to begin of line, first column
- END, $ - go to end of line, last column
- Ctrl+e - scroll a window down
- Ctrl+y - scroll a window up
- Ctrl+d - forward a half window
- Ctrl+u - backward a half window
- s - save content to file
- / - search for a pattern which will take you to the next occurrence
- ? - search for a pattern which will take you to the previous occurrence
- n - for next match
- N - for next match in reverse direction
- c - column search
- Alt+c - switch (on, off) drawing line cursor
- Alt+m - switch (on, off) own mouse handler
- Alt+n - switch (on, off) drawing line numbers
- Alt+v, double click on column header - switch (on, off) drawing column cursor
- Mouse button wheel - scroll vertical
- Alt+Mouse button wheel - scroll horizontal
- F9 - show menu
- q, F10, Esc 0 - quit
- Alt+q - quit wit raw (unformatted) output
- Alt+k, Alt+double click - switch bookmark
- Alt+j - go to next bookmark
- Alt+i - go to previous bookmark
- Alt+o - flush bookmarks
- a - sort ascendent
- d - sort descendent
- u - unsorted (sorted in origin order)
- space - stop/continue in watch mode
- R - Repaint screen and refresh input file
The pager can be ended by pressing keys q or F10 or Esc 0.
With option --on-sigint-exit
then the pager is closed by pressing keys Ctrl+c
or Esc Esc.
Column search is case insensitive every time. Searched column is marked by vertical cursor. Last non empty string searching pattern is used when current searching pattern is empty string. Searching is starting after visible vertical column or on first visible not freezed columns (after some horizontal scrolling) or on first column. After last column searching starts from first again.
V: [d/d d..d]
- vertical cursor: (column number)/(columns) (char possitions from) .. (char possitions to)FC: d
- freezed columns length in charsC: d..d/d
- unfreezed visible data in chars (from .. to)/(total)L:[d + d d/d]
- lines (number of first visible line) + (number of line of display), (current line)/(lines)d%
- percent of already displayed data
It works well with miller http://johnkerl.org/miller/doc/index.html
mlr --icsv --opprint --barred put '' obce.csv | pspg --force-uniborder
New version has integrated csv support - just use --csv
option.
It can be integrated into mc
- copy file from
/etc/mc/mc.ext
to your~/.config/mc directory
- insert there
#csv regex/\.csv View=pspg -f %f --csv
- restart
mc
The result of query can be refreshed every n seconds. pspg
remembers cursor row,
possible vertical cursor, possible ordering. The refreshing should be paused by pressing
space key. Repeated pressing of this key enables refreshing again.
pspg
uses inotify API when it is available, and when input file is changed, then
pspg
reread file immediately. This behave can be disabled by option --no-watch-file
or by specification watch time by option --watch
.
pspg
can continually read from file or FIFO (named pipe). This behave should
should be forced by option --stream
.
When last writer to FIFO is ending, then pspg
is ending too. This behave can be
changed by option --hold-stream
. Default value is 0. When --hold-stream=1
then
pspg
will try to reopen FIFO and will hang until the FIFO will be opened for
writing. --hold-stream=2
is different strategy. The pspg
reopen FIFO in write
mode, and then FIFO will be opened until pspg
is running.
you should to add to your profile:
#for Postgres 10 and older export PAGER="pspg" #for postgres 11 and newer export PSQL_PAGER="pspg" #or "\setenv PAGER pspg" to .psqlrc
and .psqlrc
\pset linestyle unicode \pset border 2
some possible configuration:
-- Switch pagers with :x and :xx commands \set x '\\setenv PAGER less' \set xx '\\setenv PAGER \'pspg -bX --no-mouse\'' :xx
LC_CTYPE
should be correct. Mainly when you use unicode borders.
ncurses doesn't display unicode borders (produced by psql
) without
correct setting of this variable. Is possible to check a value 'C.UTF8'.
When you use a option --only-for-tables
, then
- set
PAGER
topspg
andPSQL_PAGER
toless
or - set
PAGER
toless
andPSQL_PAGER
topspg
MariaDB [sakila]> pager pspg -s 14 -X --force-uniborder --quit-if-one-screen PAGER set to 'pspg -s 14 -X --force-uniborder --quit-if-one-screen' MariaDB [sakila]> select now(); MariaDB [sakila]> select * from nicer_but_slower_film_list limit 100;
SQLite native client doesn't produce well formatted output, but can be forced
to generate CSV format - and this format is well readable for pspg
sqlite3 -csv -header testdb.db 'select * from foo2' | pspg --csv --csv-header=on --double-header
pgcli needs the following configuration options (~/.config/pgcli/config
):
pager = /usr/bin/pspg --csv --rr=2 --quit-if-one-screen --ignore-case --csv-header on --pgcli-fix
table_format = csv
Some linker issues can be fixed by:
I changed gcc -lncursesw pager.c -o pspg -ggdb to gcc pager.c -o pspg -ggdb -lncursesw
On some old systems a compilation fails with error
/home/user/Src/pspg-0.6/src/pspg.c:2403: undefined reference to `set_escdelay`
In this case comment line with function set_escdelay
When you compile code from source, run ./configure first. Sometimes ./autogen.sh first
If you would to display UTF-8 characters, then pspg
should be linked with ncursesw
library. UTF-8 characters are displayed badly when library ncursesw
is used. You can
see broken characters with incorrect locale setting too.
You can check wide chars support by pspg --version
. Row ncurses with wide char support
is expected. Re-run configure
with --with-ncursesw
option. When this command fails check
if development package for ncuresesw library is installed.
# brew install pspg
# apt-cache search pspg
# apt-get install pspg
# dnf install pspg
The pspg is available from community repository https://yum.postgresql.org/packages.php
# apk add pspg
# emerge -av dev-db/pspg
The Arch User Repository contains two versions:
Use the AUR helper of your choice or git and makepkg
to install pspg.
# pkg install pspg
# port install pspg
There are few issues requires manual code changes for successful compilation - we successfully
tested pspg
, but although pspg
was linked with ncursesw libraries, the utf8 encoding support
didn't work fully correctly - probably due some issues in libc
library. There are problems with
chars encoded to 3bytes - unicode borders, .. Two bytes unicode chars should be displayed well.
You can use pspg
with usual accented chars, but unicode bordes should not be used. Replacement
ascii borders by special borders chars (by ncurses technology) works well - looks on Options|Force unicode borders
option.
-
Solaris
make
doesn't support conditional statements - should be removed So, remove unsupported functionality fromMakefile
(ifdef
,endif
), replace-include
byinclude
first. -
After running
configure
remove link ontermcap
library fromconfig.make
. It is garabage produced byreadline
automake script. Combination withncurses
libraries makes some linking issues.
export CURSES_CFLAGS="-I/usr/include/ncurses/"
export PANEL_LIBS="-lpanelw"
./configure
export CFLAGS="-m64 -I/opt/csw/include"
export LDFLAGS="-L/opt/csw/lib/64 -R/opt/csw/lib/64"
export PKG_CONFIG_PATH="/opt/csw/lib/64/pkgconfig"
./configure
- Store data in some column format (now data are stored like array of rows). With this change can be possible to operate over columns - hide columns, change width, cyclic iteration over columns, change order of columns, mark columns and export only selected columns (selected rows).
This project uses st_menu library - implementation of CUA menubar and pulldown menu for ncurses https://github.com/okbob/ncurses-st-menu
If you like it, send a postcard from your home country to my address, please:
Pavel Stehule
Skalice 12
256 01 Benesov u Prahy
Czech Republic
I invite any questions, comments, bug reports, patches on mail address pavel.stehule@gmail.com