Changes between Initial Version and Version 1 of Ticket #23440


Ignore:
Timestamp:
Sep 6, 2014, 12:22:13 PM (10 years ago)
Author:
djbug
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23440 – Description

    initial v1  
    1515{{{
    1616Relation.objects.select_related().filter(id=1)
     17}}}
    1718
     19{{{#!sql
    1820SELECT "relation"."id", "relation"."left_id", "relation"."right_id", "left"."id", "left"."name", T3."id", T3."name",
    1921FROM "relation" INNER JOIN "left" ON ( "relation"."left_id" = "left"."id" ) INNER JOIN "right" T3 ON ("relation"."right_id" = T3."id" )
     
    2527
    2628{{{
     29#!sql
    2730SELECT "relation"."id", "relation"."left_id", "relation"."right_id", "left"."id", "left"."name",
    2831FROM "relation" INNER JOIN "left" ON ( "relation"."left_id" = "left"."id" OR "relation"."right_id" = "left"."id")
     
    3033}}}
    3134
    32 P.S. Not sure if this is related : https://code.djangoproject.com/ticket/7125
     35P.S. Not sure if this is related : [7125]
Back to Top