You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version check only worked with pg_config reporting 3-component
version number *and* no extra information. This does not work with libpq
as available in Ubuntu repositories, which both (a) only reports major
and minor version components, and (b) adds more information in the
parens afterwards.
But only major and minor are actually used, so just read those in and
slurp the rest of the line.
Fixesjensl#4.
On my Ubuntu 18.04 machine the pg_config --version output is the following:
PostgreSQL 10.9 (Ubuntu 10.9-0ubuntu0.18.04.1)
Minor/major versions will be parsed to
9 (Ubuntu 10.9-0ubuntu0.18.04.1)
10 (Ubuntu 10.9-0ubuntu0.18.04.1)
which in turns makes the build fail. See sources.mk for Postgres module
The text was updated successfully, but these errors were encountered: