public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH 3/3] importer: Purge any redundant entries
Date: Sun, 06 Sep 2020 09:49:10 +0000	[thread overview]
Message-ID: <42f16516-2006-5d9e-be61-9134a6fb443a@ipfire.org> (raw)
In-Reply-To: <9e67c95c-cbbd-bda6-0d26-befe24dfa70a@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1128 bytes --]

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(a)ipfire.org>
---
 src/python/location-importer.in | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index fbc402f..ea72790 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -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
-- 
2.20.1

      reply	other threads:[~2020-09-06  9:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-06  9:47 [PATCH 1/3] location-importer.in: avoid violating NOT NULL constraints during JOIN Peter Müller
2020-09-06  9:48 ` [PATCH 2/3] importer: Import raw sources for inetnum's again Peter Müller
2020-09-06  9:49   ` Peter Müller [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42f16516-2006-5d9e-be61-9134a6fb443a@ipfire.org \
    --to=peter.mueller@ipfire.org \
    --cc=location@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox