[Postgis] Problème de version
hello,
Je ne maîtrise pas vraiment l'installation/la partie PostGIS.
Nous avons installé Postgres 9.6 + postgis.x86_64 2.0.7-1.el7 / evs-sci_Fedora_EPEL_epel7-x86_64 via yum
J'ai ensuite exécuté dans la base utilisateur les scripts
- postgis.sql
- postgis_comments.sql
- spatial_ref_sys.sql
- topology.sql
- topology_comments.sql
- rtpostgis.sql
- raster_comments.sql
- sfcgal.sql
- sfcgal_comments.sql
Ensuite j'ai exécuté un
Code:
1 2 3 4
| CREATE EXTENSION postgis;
CREATE EXTENSION postgis_topology;
CREATE EXTENSION postgis_sfcgal;
CREATE EXTENSION address_standardizer; |
Le problème actuel, c'est que lorsque je tente une insertion dans spatial.raster_metadata, j'obtiens l'erreur
Citation:
"ERROR: could not access file "$libdir/rtpostgis-2.3". No such file or directory.
... bien évidemment puisque je suis en 2.4
Code:
1 2 3
| select postgis_version();
postgis_version()
"2.4 USE_GEOS=1 USE_PROJ=1 USE_STATS=1" |
D'où lui vient ce reliquat de la 2.3 ?
Comment fixer ?