changeset 1664:819f67c31dfb

Imports: Stripped schema prefixes from table dependencies.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 23 Dec 2018 12:57:28 +0100
parents 10e3dd3b9363
children da0d1a19ebe6
files pkg/imports/bn.go pkg/imports/gm.go pkg/imports/sr.go
diffstat 3 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/imports/bn.go	Sun Dec 23 12:51:51 2018 +0100
+++ b/pkg/imports/bn.go	Sun Dec 23 12:57:28 2018 +0100
@@ -93,8 +93,8 @@
 
 func (bnJobCreator) Depends() []string {
 	return []string{
-		"waterway.gauges",
-		"waterway.bottlenecks",
+		"gauges",
+		"bottlenecks",
 	}
 }
 
--- a/pkg/imports/gm.go	Sun Dec 23 12:51:51 2018 +0100
+++ b/pkg/imports/gm.go	Sun Dec 23 12:57:28 2018 +0100
@@ -95,8 +95,8 @@
 
 func (gmJobCreator) Depends() []string {
 	return []string{
-		"waterway.gauges",
-		"waterway.gauge_measurements",
+		"gauges",
+		"gauge_measurements",
 	}
 }
 
--- a/pkg/imports/sr.go	Sun Dec 23 12:51:51 2018 +0100
+++ b/pkg/imports/sr.go	Sun Dec 23 12:57:28 2018 +0100
@@ -87,9 +87,9 @@
 
 func (srJobCreator) Depends() []string {
 	return []string{
-		"waterway.sounding_results",
-		"waterway.sounding_results_contour_lines",
-		"waterway.bottlenecks",
+		"sounding_results",
+		"sounding_results_contour_lines",
+		"bottlenecks",
 	}
 }