diff pkg/imports/bn.go @ 1995:59055c8301df

Move import queue to its own database namespace Authorisation of the import queue has to be handled differently from the waterway-related data in the waterway schema. This is easier to handle, if both are in their own schema/namespace.
author Tom Gottfried <tom@intevation.de>
date Thu, 24 Jan 2019 12:56:31 +0100
parents d966f03ea819
children b868cb653c4d
line wrap: on
line diff
--- a/pkg/imports/bn.go	Thu Jan 24 12:50:17 2019 +0100
+++ b/pkg/imports/bn.go	Thu Jan 24 12:56:31 2019 +0100
@@ -107,7 +107,7 @@
 	bnStageDoneSQL = `
 UPDATE waterway.bottlenecks SET staging_done = true
 WHERE id IN (
-  SELECT key from waterway.track_imports
+  SELECT key from import.track_imports
   WHERE import_id = $1 AND
         relation = 'waterway.bottlenecks'::regclass)`
 )