public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH v2 1/3] location-importer.in: avoid violating NOT NULL constraints during JOIN
@ 2020-09-20 19:19 Peter Müller
  2020-09-20 19:20 ` [PATCH v2 2/3] importer: Import raw sources for inetnum's again Peter Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2020-09-20 19:19 UTC (permalink / raw)
  To: location

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

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 src/python/location-importer.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index f5ae4a9..77952f2 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -360,7 +360,7 @@ class CLI(object):
 					ON COMMIT DROP;
 				CREATE UNIQUE INDEX _autnums_number ON _autnums(number);
 
-				CREATE TEMPORARY TABLE _organizations(handle text, name text)
+				CREATE TEMPORARY TABLE _organizations(handle text, name text NOT NULL)
 					ON COMMIT DROP;
 				CREATE UNIQUE INDEX _organizations_handle ON _organizations(handle);
 			""")
@@ -373,7 +373,7 @@ class CLI(object):
 			self.db.execute("""
 				INSERT INTO autnums(number, name)
 					SELECT _autnums.number, _organizations.name FROM _autnums
-						LEFT JOIN _organizations ON _autnums.organization = _organizations.handle
+						JOIN _organizations ON _autnums.organization = _organizations.handle
 				ON CONFLICT (number) DO UPDATE SET name = excluded.name;
 			""")
 
-- 
2.26.2

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-09-24 10:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-20 19:19 [PATCH v2 1/3] location-importer.in: avoid violating NOT NULL constraints during JOIN Peter Müller
2020-09-20 19:20 ` [PATCH v2 2/3] importer: Import raw sources for inetnum's again Peter Müller
2020-09-20 19:21   ` [PATCH v2 3/3] importer: Purge any redundant entries Peter Müller
2020-09-24 10:22     ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox