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
With just installed pg_shere from current master, and we observe difference in reported version numbers between pg_sphere_version() and extension version:
=> select pg_sphere_version();
pg_sphere_version
-------------------
1.1.5
=> SELECT extversion from pg_catalog.pg_extension where extname = 'pg_sphere';
extversion
------------
1.2.0
Aren't they supposed to be the same?
The text was updated successfully, but these errors were encountered:
PR #23 is prepared. The idea is to propagate PGSPHERE_VERSION from Makefile into the code. It allows to have the single place where pg sphere version is set. One more place is the .control file where default_version should be changed as well. There is an idea to add some rule into Makefile to replace default_version with the latest one. Another way is to keep it unchanged. The version mismatch probably will fail the tests if to forget to change the version in .control file (some testing is needed).
Uh oh!
There was an error while loading. Please reload this page.
With just installed
pg_shere
from current master, and we observe difference in reported version numbers betweenpg_sphere_version()
and extension version:Aren't they supposed to be the same?
The text was updated successfully, but these errors were encountered: