-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pg_dump version incompatibility #30
Comments
Any update on this? |
hmm. Need to look at how the image is built. Any insight to this is appreciated. |
This is not really fixable by adjusting the image, since you would have to ship every version of
|
So maybe the solution is to run |
pg_dump
is only backwards compatible not forward compatible. You can connect to and backup postgres databases for which the version is <= to the installed version ofpg_dump
.When attempting to backup a newer version the following error is displayed:
Running
pg_dump --version
with the current docker image shows version11.7
meaning postgres databases with major version 12 can't be backed up.The text was updated successfully, but these errors were encountered: