<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git, branch pr/179</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>Add reflection of PostgreSQL index access methods (USING clause)</title>
<updated>2015-06-04T15:45:41+00:00</updated>
<author>
<name>Pete Hollobon</name>
<email>phollobon@renshawbay.com</email>
</author>
<published>2015-06-04T15:45:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=af19435b9c1cec28d0ac93aa832b45601af51597'/>
<id>af19435b9c1cec28d0ac93aa832b45601af51597</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add reflection of PostgreSQL index storage options</title>
<updated>2015-06-04T14:12:09+00:00</updated>
<author>
<name>Pete Hollobon</name>
<email>phollobon@renshawbay.com</email>
</author>
<published>2015-06-04T14:12:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b03ee45f32e53416ce1c73fa15966db17ed4bbf9'/>
<id>b03ee45f32e53416ce1c73fa15966db17ed4bbf9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for PostgreSQL index storage parameters</title>
<updated>2015-06-03T16:32:12+00:00</updated>
<author>
<name>Pete Hollobon</name>
<email>phollobon@renshawbay.com</email>
</author>
<published>2015-06-03T15:55:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=dff81500b161cf41ff5d9e77c21a24010e1bd93b'/>
<id>dff81500b161cf41ff5d9e77c21a24010e1bd93b</id>
<content type='text'>
Add support for specifying PostgreSQL index storage paramters (e.g.
fillfactor).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for specifying PostgreSQL index storage paramters (e.g.
fillfactor).
</pre>
</div>
</content>
</entry>
<entry>
<title>- correctly categorize this changelog entry and rewrite it</title>
<updated>2015-06-03T15:04:08+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-03T15:04:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=16a87fe6d954def3143820217adf398d8eda42c9'/>
<id>16a87fe6d954def3143820217adf398d8eda42c9</id>
<content type='text'>
to be understandable, now that there's some time past since
I first wrote it
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to be understandable, now that there's some time past since
I first wrote it
</pre>
</div>
</content>
</entry>
<entry>
<title>- fix this test to not require pyodbc installed</title>
<updated>2015-06-03T14:45:45+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-03T14:45:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5a17d73648dde740c2190b5d9006472ca7707320'/>
<id>5a17d73648dde740c2190b5d9006472ca7707320</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- changelog for pr bitbucket:54</title>
<updated>2015-06-03T14:08:33+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-03T14:08:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=47d29eae8fa14ab7b1aab63797860a475338f950'/>
<id>47d29eae8fa14ab7b1aab63797860a475338f950</id>
<content type='text'>
- alter the approach so that the initial callable is working just like add_criteria/with_criteria
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- alter the approach so that the initial callable is working just like add_criteria/with_criteria
</pre>
</div>
</content>
</entry>
<entry>
<title>baked: Support initial args for cache key</title>
<updated>2015-06-02T13:05:18+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2015-06-02T13:05:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=36d2b40cf55bc0f4e850e9ec4e905f0051f573f2'/>
<id>36d2b40cf55bc0f4e850e9ec4e905f0051f573f2</id>
<content type='text'>
When making baked query in classmethod of declarative base,
cls should be added in cache key.

    @as_declarative
    class Base(object):

        @classmethod
        def baked_query(cls):
            return bakery(lambda: session.query(cls), (cls,))
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When making baked query in classmethod of declarative base,
cls should be added in cache key.

    @as_declarative
    class Base(object):

        @classmethod
        def baked_query(cls):
            return bakery(lambda: session.query(cls), (cls,))
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/pr/176'</title>
<updated>2015-05-30T00:52:27+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-05-30T00:52:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=0766c80b9c02fdbad3203835ab850ad690f4c03b'/>
<id>0766c80b9c02fdbad3203835ab850ad690f4c03b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in directive</title>
<updated>2015-05-29T19:21:16+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2015-05-29T19:21:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6245d003f2ce404daedfba9101bb1e4f098b4c66'/>
<id>6245d003f2ce404daedfba9101bb1e4f098b4c66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update to correct TDS version; FreeTDS only supports up to 7.3. 8.0 is not a valid version (Microsoft released the spec late).</title>
<updated>2015-05-28T18:25:56+00:00</updated>
<author>
<name>Allen, Timothy</name>
<email>tallen@wharton.upenn.edu</email>
</author>
<published>2015-05-28T18:25:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=19571e2f8f4b621f3a1eaea198a8556497178015'/>
<id>19571e2f8f4b621f3a1eaea198a8556497178015</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
