<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/orm, branch pr/53</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>- documentation cleanup in ORM including [ticket:2816]</title>
<updated>2013-12-07T23:03:05+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-12-07T23:00:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6817592180ac2ecd52d543029431f3f803967ce6'/>
<id>6817592180ac2ecd52d543029431f3f803967ce6</id>
<content type='text'>
Conflicts:
	lib/sqlalchemy/orm/mapper.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	lib/sqlalchemy/orm/mapper.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix cross references</title>
<updated>2013-11-15T02:52:54+00:00</updated>
<author>
<name>Vraj Mohan</name>
<email>r.vrajmohan@gmail.com</email>
</author>
<published>2013-11-14T20:59:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=db5ea0088709092f1fe62e72b42776b245744243'/>
<id>db5ea0088709092f1fe62e72b42776b245744243</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix indentation and escape *args and **kwargs</title>
<updated>2013-11-15T02:45:02+00:00</updated>
<author>
<name>Vraj Mohan</name>
<email>r.vrajmohan@gmail.com</email>
</author>
<published>2013-11-13T13:24:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=97e8ac88ff8260455033479553578169365fb6ed'/>
<id>97e8ac88ff8260455033479553578169365fb6ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed a regression introduced by :ticket:`2818` where the EXISTS</title>
<updated>2013-10-30T14:34:57+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-30T14:34:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=2576b5cdfb09fd1fb28e083e0a41f7596c6a1100'/>
<id>2576b5cdfb09fd1fb28e083e0a41f7596c6a1100</id>
<content type='text'>
query being generated would produce a "columns being replaced"
warning for a statement with two same-named columns,
as the internal SELECT wouldn't have use_labels set.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
query being generated would produce a "columns being replaced"
warning for a statement with two same-named columns,
as the internal SELECT wouldn't have use_labels set.
</pre>
</div>
</content>
</entry>
<entry>
<title>alphabetical ordering</title>
<updated>2013-10-13T21:17:26+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-13T21:17:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b26679e06a5473355a68bfea2a574c1aa14407a6'/>
<id>b26679e06a5473355a68bfea2a574c1aa14407a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>-  Added new option to :func:`.relationship` ``distinct_target_key``.</title>
<updated>2013-10-13T20:54:21+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-13T20:54:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=28a349135792a2f8e94fc0892cb612804d3b072c'/>
<id>28a349135792a2f8e94fc0892cb612804d3b072c</id>
<content type='text'>
This enables the subquery eager loader strategy to apply a DISTINCT
to the innermost SELECT subquery, to assist in the case where
duplicate rows are generated by the innermost query which corresponds
to this relationship (there's not yet a general solution to the issue
of dupe rows within subquery eager loading, however, when joins outside
of the innermost subquery produce dupes).  When the flag
is set to ``True``, the DISTINCT is rendered unconditionally, and when
it is set to ``None``, DISTINCT is rendered if the innermost relationship
targets columns that do not comprise a full primary key.
The option defaults to False in 0.8 (e.g. off by default in all cases),
None in 0.9 (e.g. automatic by default).   Thanks to Alexander Koval
for help with this. [ticket:2836]

Conflicts:
	lib/sqlalchemy/orm/relationships.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This enables the subquery eager loader strategy to apply a DISTINCT
to the innermost SELECT subquery, to assist in the case where
duplicate rows are generated by the innermost query which corresponds
to this relationship (there's not yet a general solution to the issue
of dupe rows within subquery eager loading, however, when joins outside
of the innermost subquery produce dupes).  When the flag
is set to ``True``, the DISTINCT is rendered unconditionally, and when
it is set to ``None``, DISTINCT is rendered if the innermost relationship
targets columns that do not comprise a full primary key.
The option defaults to False in 0.8 (e.g. off by default in all cases),
None in 0.9 (e.g. automatic by default).   Thanks to Alexander Koval
for help with this. [ticket:2836]

Conflicts:
	lib/sqlalchemy/orm/relationships.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed Query.exists() method for the case, when query doesn't have any filters applied.</title>
<updated>2013-09-04T15:46:28+00:00</updated>
<author>
<name>Vladimir Magamedov</name>
<email>vladimir@magamedov.com</email>
</author>
<published>2013-09-04T08:43:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5d1bd984e603f3c1910967c2b528bf1ce3cf999c'/>
<id>5d1bd984e603f3c1910967c2b528bf1ce3cf999c</id>
<content type='text'>
Conflicts:
	doc/build/changelog/changelog_09.rst
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	doc/build/changelog/changelog_09.rst
</pre>
</div>
</content>
</entry>
<entry>
<title>- add version_id documentation [ticket:867]</title>
<updated>2013-08-25T18:22:27+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-08-25T18:22:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=be594493e6a6af39e2b5512f3b14228811f6e15a'/>
<id>be594493e6a6af39e2b5512f3b14228811f6e15a</id>
<content type='text'>
- add the RETURNING glossary entry
- other "seealso's" fixed
- add doc for eager_defaults option
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- add the RETURNING glossary entry
- other "seealso's" fixed
- add doc for eager_defaults option
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #23 from yoloseem/master</title>
<updated>2013-08-25T16:09:10+00:00</updated>
<author>
<name>mike bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-08-25T16:08:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9fa0088d438c0abed6027779990f8878c2ceecc4'/>
<id>9fa0088d438c0abed6027779990f8878c2ceecc4</id>
<content type='text'>
Fixed two typos.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed two typos.
</pre>
</div>
</content>
</entry>
<entry>
<title>- this comment is wrong, the method here returns all mapper entities</title>
<updated>2013-08-24T15:30:57+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-08-24T15:30:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f8061236b8e74596fcb372149b76b9caa476e5b5'/>
<id>f8061236b8e74596fcb372149b76b9caa476e5b5</id>
<content type='text'>
- use a simple isinstance() check instead of looking for presence of
"primary_entity" flag, that's a little unclear
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- use a simple isinstance() check instead of looking for presence of
"primary_entity" flag, that's a little unclear
</pre>
</div>
</content>
</entry>
</feed>
