changeset 3224:bfde4f8dd323

Add missing table dependencies of imports with area generation
author Tom Gottfried <tom@intevation.de>
date Thu, 09 May 2019 15:50:07 +0200
parents 9e087a495f41
children 1a0985083c06
files pkg/imports/bn.go pkg/imports/sec.go pkg/imports/st.go
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/imports/bn.go	Thu May 09 15:42:21 2019 +0200
+++ b/pkg/imports/bn.go	Thu May 09 15:50:07 2019 +0200
@@ -107,7 +107,7 @@
 func (bnJobCreator) Depends() [2][]string {
 	return [2][]string{
 		{"bottlenecks", "bottlenecks_riverbed_materials"},
-		{"gauges"},
+		{"gauges", "distance_marks_virtual", "waterway_axis", "waterway_area"},
 	}
 }
 
--- a/pkg/imports/sec.go	Thu May 09 15:42:21 2019 +0200
+++ b/pkg/imports/sec.go	Thu May 09 15:50:07 2019 +0200
@@ -49,7 +49,7 @@
 func (secJobCreator) Depends() [2][]string {
 	return [2][]string{
 		{"sections"},
-		{},
+		{"distance_marks_virtual", "waterway_axis", "waterway_area"},
 	}
 }
 
--- a/pkg/imports/st.go	Thu May 09 15:42:21 2019 +0200
+++ b/pkg/imports/st.go	Thu May 09 15:50:07 2019 +0200
@@ -51,7 +51,7 @@
 func (stJobCreator) Depends() [2][]string {
 	return [2][]string{
 		{"stretches", "stretch_countries"},
-		{},
+		{"distance_marks_virtual", "waterway_axis", "waterway_area"},
 	}
 }