ckanext-spatial
ckanext-spatial copied to clipboard
Incompatible with `db clean`
With this plugin enabled using the core CKAN command to clear the database becomes impossible for a couple of reasons.
- The tables it tries to delete cannot be deleted until the postgis extension is dropped (
DROP EXTENSION postgis; DROP EXTENSION postgis_topology;
) - The clear cannot finish as the extension tries to create missing tables on load, but cannot complete this midway during the clear process.
I'm hitting the same problem and struggling to find any info on this. Was it ever resolved?