Opened 16 years ago

Closed 16 years ago

#6090 closed (wontfix)

Add whitespace between fields in queries

Reported by: Stein Magnus Jodal Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Design decision needed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The attached patch adds whitespace between fields in queries, as to better display the queries for debugging.

All occurrences of ",".join(...) in django.db is replaced by ", ".join(...) .

Attachments (1)

django-r6816-query-whitespace.diff (3.7 KB ) - added by Stein Magnus Jodal 16 years ago.
Patch against SVN r6816.

Download all attachments as: .zip

Change History (3)

by Stein Magnus Jodal, 16 years ago

Patch against SVN r6816.

comment:1 by Simon G <dev@…>, 16 years ago

Triage Stage: UnreviewedDesign decision needed

comment:2 by Malcolm Tredinnick, 16 years ago

Resolution: wontfix
Status: newclosed

Not worth changing on trunk at the moment. The queryset-refactor branch already does this, so it'll be part of trunk soon.

Note: See TracTickets for help on using tickets.
Back to Top