-
Check the installed version(s) of pg_dump:
find / -name pg_dump -type f 2>/dev/null
-
My output was:
/usr/pgsql-9.3/bin/pg_dump /usr/bin/pg_dump
-
There are two versions installed. To update pg_dump with the newer version:
sudo ln -s /usr/pgsql-9.3/bin/pg_dump /usr/bin/pg_dump --force
This will create the symlink to the newer version.