You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result: <MultilingualQuerySet [<Blog: Duck>, <Blog: Falcon>]>
SELECT ...
FROM "app_blog"
INNER JOIN "app_category" ON ("app_blog"."category_id" = "app_category"."id")
LEFT OUTER JOIN "app_category" T3 ON ("app_category"."parent_id" = T3."id")
WHERE (("app_category"."slug" = 'birds'
OR T3."slug" = 'birds')
AND "app_blog"."is_active" = true)
and for language = en in:
result: <MultilingualQuerySet []>
SELECT ..., "app_blog"."i18n", COALESCE((T3."i18n" ->> 'slug_nl'), T3."slug") AS "slug_i18n_annotation"
FROM "app_blog"
LEFT OUTER JOIN "app_category" ON ("app_blog"."category_id" = "app_category"."id")
LEFT OUTER JOIN "app_category" T3 ON ("app_category"."parent_id" = T3."id")
WHERE ((COALESCE((T3."i18n" ->> 'slug_nl'), T3."slug") = 'birds'
OR COALESCE((T3."i18n" ->> 'slug_nl'), T3."slug") = 'birds')
AND "app_blog"."is_active" = true)
So the problem is the duplicated LEFT OUTER JOIN.
The text was updated successfully, but these errors were encountered:
@pjburon This clearly is a different issue, so created a new one.
originally reported in #34
This Queryset
Results for
language = en
in:and for
language = en
in:So the problem is the duplicated
LEFT OUTER JOIN
.The text was updated successfully, but these errors were encountered: