diff pkg/imports/sr.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 6a67cd819e93
children b868cb653c4d
line wrap: on
line diff
--- a/pkg/imports/sr.go	Thu Jan 24 12:50:17 2019 +0100
+++ b/pkg/imports/sr.go	Thu Jan 24 12:56:31 2019 +0100
@@ -106,7 +106,7 @@
 	srStageDoneSQL = `
 UPDATE waterway.sounding_results SET staging_done = true
 WHERE id = (
-  SELECT key from waterway.track_imports
+  SELECT key from import.track_imports
   WHERE import_id = $1 AND
         relation = 'waterway.sounding_results'::regclass)`