We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad28d8e commit 81f3648Copy full SHA for 81f3648
1 file changed
start
@@ -268,7 +268,10 @@ esac
268
269
if [ $VERSION_CHECK -eq 1 ]; then
270
# Fetch server version
271
- PGVERSION=$(psql -h "$POSTGRES_HOST" -p "$POSTGRES_PORT" -d "${POSTGRES_DB:-$POSTGRES_DATABASE}" -U "$POSTGRES_USER" -t -A -c 'SHOW server_version_num;') || { >&2 echo "Failed to connect to PostgreSQL to determine server version"; exit 1; }
+ PGVERSION=$(psql -h "$POSTGRES_HOST" -p "$POSTGRES_PORT" -d "${POSTGRES_DB:-$POSTGRES_DATABASE}" -U "$POSTGRES_USER" -t -A -c 'SHOW server_version_num;') || {
272
+ >&2 echo "Failed to connect to PostgreSQL to determine server version"
273
+ exit 1
274
+ }
275
276
unset PGPASSWORD
277
0 commit comments