When using Psql on Linux, if the result of my SQL query contains many columns or long rows of data, it will wrap the initial view, and only once when I go sideways, it will stop wrapping and show each row on a separate line.
I tried various \pset options , such as format unaligned , format aligned , format wrapped , columns 0 , columns 1000 , but no one seemed to stop the wrapper completely if I did not create static output to the file.
How can I set it to never finish the output while it is still scrolling, and showing the result using the default ascii table format?
source share