-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7a1320
commit 62b2a13
Showing
2 changed files
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,7 @@ WITH RECURSIVE FEATURE_HIERARCHY AS | |
NULL AS VAL_CONTENT_MIME_TYPE, | ||
FALSE AS IS_CYCLE, | ||
ARRAY[]::bigint[] AS PATH | ||
FROM @[email protected] | ||
WHERE ID = ? | ||
FROM (SELECT ?::bigint AS ID) F | ||
UNION ALL SELECT | ||
P.ID, | ||
P.FEATURE_ID, | ||
|