Opened 16 years ago
Closed 12 years ago
#9049 closed New feature (wontfix)
queryset .extra(tables=[...]) unnecessarily quotes table names
Reported by: | Tobias McNulty | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | 1.0 |
Severity: | Normal | Keywords: | |
Cc: | elsdoerfer@…, sciyoshi@… | Triage Stage: | Accepted |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
A while back I could happily pass subqueries, joins, and even pl/pgsql calls in through the queryset .extra() method, via the tables parameter. Sometime in the past few months that changed, when Django began quoting the "table names" i passed it.
Why does Django need to do this? I can quote the table names myself if I know them to need such treatment--and not doing it by default opens up a lot of possibilities for the .extra method and Django ORM in general.
Alternatively, to avoid breaking existing code, we could add an option to .extra that told it not to quote table names.
Thanks.
Attachments (1)
Change History (9)
by , 16 years ago
Attachment: | dont_quote_extra_tables.patch added |
---|
comment:1 by , 16 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 16 years ago
Looks like there's already a partial solution to this in #7231, though having 'tables', 'join', and potentially 'subquery' keyword arguments to .extra() might raise unnecessary confusion when they all do virtually the same thing.
comment:3 by , 16 years ago
Cc: | added |
---|
comment:5 by , 14 years ago
Severity: | → Normal |
---|---|
Type: | → New feature |
comment:8 by , 12 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Seems like no action in 4 years for a reference point ticket is a good reason for closing.
It would be nice to have an easy way to inject subqueries into ORM queries, but .extra() I don't think we want to push .extra() in that direction.
Maybe we would want to add a generic "mark_safe" style way to avoid quoting of names. This would be useful for example in:
class SomeView(models.Model): cols... class Meta: db_table = mark_safe("(select * from sometable join othertable)") managed = False
Suddenly, you have inlined view! Would also solve this ticket's issue.
But, not this ticket's issue.
This patch isn't going in, it will cause too many difficult-to-diagnose bugs in people's code to support something that only worked by accident.
There's a case for adding a literal-pass-through class to a few places in the query code that can be used to avoid any quoting or further processing and I've played around with that a bit in code with clients already. It mostly works (right now, the way to get what you want is to subclass Query and override the
get_from_clause
method). I'm also thinking about how to add general support for nested subqueries in the FROM-clause portion of the query which will help here. With a good tail-wind, that's likely to be ready for 1.1.Django's ORM isn't meant to be a total replacement for SQL and this is one of those places where you probably can't just use the normal function calls right now. Subclassing and overriding the appropriate methods still works, however.
I'll leave this open as the reference point for adding subqueries and literals to "FROM".