Opened 14 years ago

Closed 14 years ago

Last modified 12 years ago

#11975 closed (fixed)

invalid sql returned from django.db.backends.sqlite3.DatabaseOperations.date_trunc_sql

Reported by: akonsu@… Owned by: Fabián Ezequiel Gallina
Component: Database layer (models, ORM) Version: dev
Severity: Keywords: sqlite DatabaseOperations pycamp2010 djangosprint famaf
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

this method returns 'django_date_trunc("<precision>", <field>)'. in sqlite3, double quoted strings are identifiers, and string literals are single quoted (see http://www.sqlite.org/lang_keywords.html). so it should return "django_date_trunc('<precision>', <field>)". this breaks code such as the following:

MyModel.objects.extra(select={'year':connection.ops.date_trunc_sql('year', '"mymodel"."date"')}).values('year').order_by().annotate(total=Count('pk')) 

the resulting query:

[{'time': '0.007', 'sql': u'SELECT (django_date_trunc("year", "mymodel"."date")) AS "year", COUNT("mymodel"."id") AS "total" FROM "mymodel" GROUP BY django_date_trunc("year", "mymodel"."date")'}] 

same problem exists with date_extract_sql()

Attachments (1)

bug11975.patch (2.0 KB ) - added by Fabián Ezequiel Gallina 14 years ago.
Tests for bug #11975

Download all attachments as: .zip

Change History (7)

comment:1 by Russell Keith-Magee, 14 years ago

milestone: 1.2
Triage Stage: UnreviewedAccepted

comment:2 by Fabián Ezequiel Gallina, 14 years ago

Owner: changed from nobody to Fabián Ezequiel Gallina

comment:3 by Fabián Ezequiel Gallina, 14 years ago

Resolution: fixed
Status: newclosed

I was not able to reproduce this issue. My guess is that it was fixed in this revision[0].

Attached is a patch which adds a test for this bug.

[0] http://code.djangoproject.com/changeset/12573/django/trunk/django/db/backends/sqlite3/base.py

comment:4 by Fabián Ezequiel Gallina, 14 years ago

Has patch: set

comment:5 by Fabián Ezequiel Gallina, 14 years ago

Keywords: pycamp2010 djangosprint famaf added

by Fabián Ezequiel Gallina, 14 years ago

Attachment: bug11975.patch added

Tests for bug #11975

comment:6 by Jacob, 12 years ago

milestone: 1.2

Milestone 1.2 deleted

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