[3/3] importer: Purge any redundant entries
Commit Message
When importing inetnums, we might import various small networks
which are not relevant for us as long as they do not have a
different country code than their parent network.
Therefore we delete all these entries to keep the database
smaller without losing any information.
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
---
src/python/location-importer.in | 7 +++++++
1 file changed, 7 insertions(+)
@@ -375,6 +375,13 @@ class CLI(object):
SELECT _autnums.number, _organizations.name FROM _autnums
JOIN _organizations ON _autnums.organization = _organizations.handle
ON CONFLICT (number) DO UPDATE SET name = excluded.name;
+
+ --- Purge any redundant entries
+ DELETE FROM networks candidates WHERE EXISTS (
+ SELECT FROM networks
+ WHERE networks.network >> candidates.network
+ AND networks.country = candidates.country
+ );
""")
# Download all extended sources