<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/test/dialect, branch pr/10</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>Fix unicode literals on Python 3.1 and 3.2</title>
<updated>2013-06-23T09:57:53+00:00</updated>
<author>
<name>Roman Podolyaka</name>
<email>roman.podolyaka@gmail.com</email>
</author>
<published>2013-06-23T09:04:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=25b4637bcde9bdc86240ce5eef834374a1203925'/>
<id>25b4637bcde9bdc86240ce5eef834374a1203925</id>
<content type='text'>
A few tests use u'' unicode literals which are not
supported in Python versions 3.1 and 3.2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A few tests use u'' unicode literals which are not
supported in Python versions 3.1 and 3.2.
</pre>
</div>
</content>
</entry>
<entry>
<title>this locale is not needed.   maybe it is somewhere but the locale I have ("C", whatever that means,</title>
<updated>2013-06-22T15:25:41+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-22T15:25:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=db24d2e81313a34271402356a463e8ebeae84cd0'/>
<id>db24d2e81313a34271402356a463e8ebeae84cd0</id>
<content type='text'>
cannot find meaning of this anywhere in Postgresql documentation) seems to work
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cannot find meaning of this anywhere in Postgresql documentation) seems to work
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #5 from cjw296/pg-ranges</title>
<updated>2013-06-22T14:47:02+00:00</updated>
<author>
<name>mike bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-22T14:47:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=29fa6913be46c4e4c95b2b2810baea24c4b211dd'/>
<id>29fa6913be46c4e4c95b2b2810baea24c4b211dd</id>
<content type='text'>
Support for Postgres range types.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Support for Postgres range types.</pre>
</div>
</content>
</entry>
<entry>
<title>can remove this, issue is fixed</title>
<updated>2013-06-17T20:05:11+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-17T20:05:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=0e83f757a8f0403e123558d50511d1f484f4a8aa'/>
<id>0e83f757a8f0403e123558d50511d1f484f4a8aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- clean up this test (really we don't even need this, it's not testing much)</title>
<updated>2013-06-17T03:09:31+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-17T03:09:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=07e6161c6ba85559472e1ab9dab5955752bf9c09'/>
<id>07e6161c6ba85559472e1ab9dab5955752bf9c09</id>
<content type='text'>
- for the moment, put a catch in it to see if we can trap that issue
on jenkins
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- for the moment, put a catch in it to see if we can trap that issue
on jenkins
</pre>
</div>
</content>
</entry>
<entry>
<title>Add AUTOCOMMIT isolation level support for psycopg2</title>
<updated>2013-06-15T13:54:50+00:00</updated>
<author>
<name>Roman Podolyaka</name>
<email>roman.podolyaka@gmail.com</email>
</author>
<published>2013-06-15T12:38:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a1ceae2ed3b3996d5b8a554c201cf668d6d17f27'/>
<id>a1ceae2ed3b3996d5b8a554c201cf668d6d17f27</id>
<content type='text'>
One can use this to emit statements, which can not be
executed within a transaction (e. g. CREATE DATABASE):

    from sqlalchemy import create_engine

    eng = create_engine('postgresql://test:test@localhost/test')

    conn = eng.connect().execution_options(isolation_level='AUTOCOMMIT')
    conn.execute('CREATE DATABASE test2;')

Fixes issue #2072.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
One can use this to emit statements, which can not be
executed within a transaction (e. g. CREATE DATABASE):

    from sqlalchemy import create_engine

    eng = create_engine('postgresql://test:test@localhost/test')

    conn = eng.connect().execution_options(isolation_level='AUTOCOMMIT')
    conn.execute('CREATE DATABASE test2;')

Fixes issue #2072.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement EXCLUDE constraints for postgres.</title>
<updated>2013-06-10T11:09:56+00:00</updated>
<author>
<name>Chris Withers</name>
<email>chris@simplistix.co.uk</email>
</author>
<published>2013-05-21T20:11:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b2ea2eef5db160183cd4f812b0ce1636d8799b91'/>
<id>b2ea2eef5db160183cd4f812b0ce1636d8799b91</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 range operators listed in http://www.postgresql.org/docs/9.2/interactive/functions-range.html</title>
<updated>2013-06-10T11:09:55+00:00</updated>
<author>
<name>Chris Withers</name>
<email>chris@simplistix.co.uk</email>
</author>
<published>2013-05-19T14:20:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f4020282b798ea510e6aafda779ab33c692c0120'/>
<id>f4020282b798ea510e6aafda779ab33c692c0120</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Basic type support for the new range types in postgres 9.2</title>
<updated>2013-06-10T11:09:55+00:00</updated>
<author>
<name>Chris Withers</name>
<email>chris@simplistix.co.uk</email>
</author>
<published>2013-05-19T07:50:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=70edfa229c8bd3d34f11fbfeaf5a7fa6bb1dfff2'/>
<id>70edfa229c8bd3d34f11fbfeaf5a7fa6bb1dfff2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>get nested joins to render on oracle 8</title>
<updated>2013-06-08T22:54:14+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-08T22:54:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=85368d25ed158c85bd19f4a63400884ab1cda26a'/>
<id>85368d25ed158c85bd19f4a63400884ab1cda26a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
