-
-
Notifications
You must be signed in to change notification settings - Fork 478
Open
Description
Normal osm2pgsql tables have an id column and osm2pgsql make sure to delete objects from them if those objects are deleted or changed. But this is not always the case, especially with the new delete callbacks.
The current way to handle this is to not set a "magic" id column, but add an id column manually that osm2pgsql doesn't know about. But that seems counterintuitive and osm2pgsql will also print a warning about an id-less table.
I see two options:
- Add some option to the
idssetting when creating the table, something like auto_delete=off or so. - Add explicit
idtypes to other types such asint, so that osm2pgsql can know that those special types are used as ids and remove the warning.
Metadata
Metadata
Assignees
Labels
No labels