Dave Jarvis <dave@joot.com> writes:
> psql DBName
> [password]
> [shift-enter pressed]
> Segmentation fault
Could you get us a stack trace from that crash?
gdb path-to-psql
gdb> run DBName
[ do your thing ]
gdb will report segfault
gdb> bt
gdb> quit
If you could recompile with debug symbols first, the backtrace would
be considerably more useful.
regards, tom lane