Skip to content

Commit

Permalink
Fix wrong query
Browse files Browse the repository at this point in the history
  • Loading branch information
KeyboardNerd committed Sep 6, 2018
1 parent ec38f11 commit 01ffcf5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion database/pgsql/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ const (
FROM namespace, feature, ancestry, namespaced_feature, ancestry_layer, ancestry_feature
WHERE ancestry.name = $1
AND ancestry.id = ancestry_layer.ancestry_id
AND ancestry_feature.ancestry_layer_id = ancestry_layer.id
AND ancestry_feature.ancestry_layer_id = ancestry_layer.id
AND ancestry_feature.namespaced_feature_id = namespaced_feature.id
AND namespaced_feature.feature_id = feature.id
AND namespaced_feature.namespace_id = namespace.id`

Expand Down

0 comments on commit 01ffcf5

Please sign in to comment.