Re: [Sqlalchemy-tickets] [sqlalchemy] #2857: PostgreSQL LATERAL JOIN support
Brought to you by:
zzzeek
|
From: sqlalchemy <mi...@zz...> - 2013-11-01 18:37:47
|
#2857: PostgreSQL LATERAL JOIN support
------------------------------------+----------------------------------
Reporter: jcigar | Owner: zzzeek
Type: enhancement | Status: new
Priority: low | Milestone: 0.x.xx
Component: postgres | Severity: minor - half an hour
Resolution: | Keywords: lateral
Progress State: needs a volunteer |
------------------------------------+----------------------------------
Changes (by zzzeek):
* priority: medium => low
* status_field: awaiting triage => needs a volunteer
* severity: no triage selected yet => minor - half an hour
* milestone: 0.9.xx => 0.x.xx
Comment:
this is pretty easy to do yourself, feel free to turn into a pullreq (with
unit tests of course):
{{{
#!python
class Lateral(Alias):
# ...
@compiles(Lateral, "postgresql")
def compile(element, compiler, **kw):
return "LATERAL %s" % compiler.visit_alias(element, **kw)
}}}
--
Ticket URL: <http://www.sqlalchemy.org/trac/ticket/2857#comment:1>
sqlalchemy <http://www.sqlalchemy.org/>
The Database Toolkit for Python
|