Skip to content

Commit 6f9260a

Browse files
authored
fix: sitemap pipes (IN-1059) (#3949)
Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
1 parent 8c8ab13 commit 6f9260a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NODE sitemap_categories_slugs
22
SQL >
3-
SELECT slug FROM categories FINAL
3+
SELECT slug FROM categories FINAL WHERE isNull (deletedAt)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NODE sitemap_category_groups_slugs
22
SQL >
3-
SELECT slug FROM categoryGroups FINAL
3+
SELECT slug FROM categoryGroups FINAL WHERE isNull (deletedAt)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NODE sitemap_projects_slugs
22
SQL >
3-
SELECT slug FROM insightsProjects FINAL
3+
SELECT slug FROM insightsProjects FINAL WHERE isNull (deletedAt)

0 commit comments

Comments
 (0)