Changes between Initial Version and Version 2 of Ticket #11082


Ignore:
Timestamp:
May 12, 2009, 11:43:10 AM (15 years ago)
Author:
Alex Gaynor
Comment:

Fixed the formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11082

    • Property Milestone1.1
    • Property Triage Stage UnreviewedAccepted
    • Property Version 1.1-beta-1SVN
  • Ticket #11082 – Description

    initial v2  
    99don't confuse which queries go with which python statements).  Version
    1010and platform info follows:
    11 
     11{{{
    1212>>> baz=Publisher.objects.all()
    1313>>> for s in Series.objects.filter(publisher__in=baz):
     
    1919...   pass
    2020...
    21 
     21}}}
     22{{{
    2223090509 19:30:22     332 Query       select count(*) from core_issue
    23 090509 19:30:28     374 Query       SELECT * FROM `core_series` WHERE
    24 `core_series`.`publisher_id` IN (SELECT U0.`id` FROM `core_publisher`
    25 U0) ORDER BY `core_series`.`name` ASC, `core_series`.`year_began` ASC
     24090509 19:30:28     374 Query       SELECT * FROM `core_series` WHERE `core_series`.`publisher_id` IN (SELECT U0.`id` FROM `core_publisher` U0) ORDER BY `core_series`.`name` ASC, `core_series`.`year_began` ASC
    2625090509 19:30:41     332 Query       select count(*) from core_issue
    27 090509 19:30:54     374 Query       SELECT * FROM `core_publisher`
    28 ORDER BY `core_publisher`.`name` ASC
    29 090509 19:30:55     374 Query       SELECT * FROM `core_series` WHERE
    30 NOT (`core_series`.`publisher_id` IN (SELECT U0.`id` FROM
    31 `core_publisher` U0)) ORDER BY `core_series`.`name` ASC,
    32 `core_series`.`year_began` ASC
     26090509 19:30:54     374 Query       SELECT * FROM `core_publisher` ORDER BY `core_publisher`.`name` ASC
     27090509 19:30:55     374 Query       SELECT * FROM `core_series` WHERE NOT (`core_series`.`publisher_id` IN (SELECT U0.`id` FROM `core_publisher` U0)) ORDER BY `core_series`.`name` ASC, `core_series`.`year_began` ASC
     28}}}
    3329Version stuff:
    3430Django 1.1 beta 1
Back to Top