<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/test/sql/test_join_rewriting.py, branch pr/67</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>- Fixed a regression introduced by the join rewriting feature of</title>
<updated>2013-11-01T19:24:43+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-11-01T19:24:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5d0e84434f116460d64d3078f650d9c89004f2a9'/>
<id>5d0e84434f116460d64d3078f650d9c89004f2a9</id>
<content type='text'>
:ticket:`2369` and :ticket:`2587` where a nested join with one side
already an aliased select would fail to translate the ON clause on the
outside correctly; in the ORM this could be seen when using a
SELECT statement as a "secondary" table. [ticket:2858]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
:ticket:`2369` and :ticket:`2587` where a nested join with one side
already an aliased select would fail to translate the ON clause on the
outside correctly; in the ORM this could be seen when using a
SELECT statement as a "secondary" table. [ticket:2858]
</pre>
</div>
</content>
</entry>
<entry>
<title>- fix issue in join rewriting whereby we need to ensure the .key and .name</title>
<updated>2013-07-27T21:05:01+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-07-27T21:05:01+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=d64b09b15c703d7e100931818976822256f6beda'/>
<id>d64b09b15c703d7e100931818976822256f6beda</id>
<content type='text'>
are transferred correctly for when .key is present; tests have been enhanced
to test this condition for render, result map construction, statement
execution.  [ticket:2790]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
are transferred correctly for when .key is present; tests have been enhanced
to test this condition for render, result map construction, statement
execution.  [ticket:2790]
</pre>
</div>
</content>
</entry>
<entry>
<title>- add coverage for result map rewriting</title>
<updated>2013-06-05T01:36:34+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-05T01:36:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=69e9574fefd5fbb4673c99ad476a00b03fe22318'/>
<id>69e9574fefd5fbb4673c99ad476a00b03fe22318</id>
<content type='text'>
- fix the result map rewriter for col mismatches, since the rewritten
select at the moment typically has more columns than the original
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fix the result map rewriter for col mismatches, since the rewritten
select at the moment typically has more columns than the original
</pre>
</div>
</content>
</entry>
<entry>
<title>- if the select() does not have use_labels on, then we just render</title>
<updated>2013-06-04T23:52:53+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-04T23:52:53+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=92e599f42f4a7dde1662fe0ae428d32bb4e8cc42'/>
<id>92e599f42f4a7dde1662fe0ae428d32bb4e8cc42</id>
<content type='text'>
the joins as is, regardless of the dialect not supporting it.  use_labels=True
indicates a higher level of automation and also can maintain the labels
between rewritten and not.  use_labels=False indicates a manual use case.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the joins as is, regardless of the dialect not supporting it.  use_labels=True
indicates a higher level of automation and also can maintain the labels
between rewritten and not.  use_labels=False indicates a manual use case.
</pre>
</div>
</content>
</entry>
<entry>
<title>- support for a__b_dc, i.e. two levels of nesting</title>
<updated>2013-06-04T23:44:57+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-04T23:44:57+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=d8a38839483aede934b6cbeb6d0828d362767a4d'/>
<id>d8a38839483aede934b6cbeb6d0828d362767a4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- add a flag to DefaultDialect for this so that people will have some</title>
<updated>2013-06-04T22:43:59+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-04T22:43:59+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=c7b52003fb369637d5f72d2a45ff256638b6362d'/>
<id>c7b52003fb369637d5f72d2a45ff256638b6362d</id>
<content type='text'>
workaround
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
workaround
</pre>
</div>
</content>
</entry>
<entry>
<title>rewriting scheme now works.</title>
<updated>2013-06-04T18:30:29+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-04T18:30:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9998e9e0131ff83a4e38e3c17a835a0854789174'/>
<id>9998e9e0131ff83a4e38e3c17a835a0854789174</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>capture the really hard one in a test (hooray)</title>
<updated>2013-06-04T17:11:03+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-04T17:11:03+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=822786dfaea7a56b16669561b4818ca1bf3a800f'/>
<id>822786dfaea7a56b16669561b4818ca1bf3a800f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
