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
When features are deleted in applyLayerChanges , the mapping record from gpkg_fid to geogig_fid is not deleted. This leads to inconsistences in the DB and strange effects when using applyLayerChanges several times.
In applyLayerChanges a line liked this
cursor.execute('DELETE FROM "%s_fids" WHERE geogig_fid = "%s"' % (layername, geogigfid))
should be added at the end of the block after "for r in removed:"
The text was updated successfully, but these errors were encountered:
When features are deleted in applyLayerChanges , the mapping record from gpkg_fid to geogig_fid is not deleted. This leads to inconsistences in the DB and strange effects when using applyLayerChanges several times.
In applyLayerChanges a line liked this
cursor.execute('DELETE FROM "%s_fids" WHERE geogig_fid = "%s"' % (layername, geogigfid))
should be added at the end of the block after "for r in removed:"
The text was updated successfully, but these errors were encountered: