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
{{ message }}
This repository has been archived by the owner on Jun 4, 2020. It is now read-only.
To reproduce the problem, create a PostGIS checkout, then try to delete some geometries. There will be a syntax error in the delete trigger.
The problem is here:
https://github.com/Oslandia/qgis-versioning/blob/master/versioning_base.py#L1479
The hardcoded schema in the code "epanet" does not exist. Seems like it should be the variable schema, like so
"SELECT "+cols+", "+hcols+" FROM "+schema+"."+table+" "
instead of
"SELECT "+cols+", "+hcols+" FROM epanet."+table+" "
Thanks
The text was updated successfully, but these errors were encountered: