# HG changeset patch # User Tom Gottfried # Date 1557409807 -7200 # Node ID bfde4f8dd323583dd5c87f8fa3677f5c1873c746 # Parent 9e087a495f41fd2184049bf99bfc2a9a32c92673 Add missing table dependencies of imports with area generation diff -r 9e087a495f41 -r bfde4f8dd323 pkg/imports/bn.go --- 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"}, } } diff -r 9e087a495f41 -r bfde4f8dd323 pkg/imports/sec.go --- 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"}, } } diff -r 9e087a495f41 -r bfde4f8dd323 pkg/imports/st.go --- 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"}, } }