<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/dialects/postgresql, branch pr/4</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 basic support of unique constraints reflection</title>
<updated>2013-06-09T20:49:55+00:00</updated>
<author>
<name>Roman Podolyaka</name>
<email>roman.podolyaka@gmail.com</email>
</author>
<published>2013-06-09T16:07:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=c69fe4acf8929856735e5d90adb7f6b6d5ebcd46'/>
<id>c69fe4acf8929856735e5d90adb7f6b6d5ebcd46</id>
<content type='text'>
Inspection API already supports reflection of table
indexes information and those also include unique
constraints (at least for PostgreSQL and MySQL).
But it could be actually useful to distinguish between
indexes and plain unique constraints (though both are
implemented in the same way internally in RDBMS).

This change adds a new method to Inspection API - get_unique_constraints()
and implements it for SQLite, PostgreSQL and MySQL dialects.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Inspection API already supports reflection of table
indexes information and those also include unique
constraints (at least for PostgreSQL and MySQL).
But it could be actually useful to distinguish between
indexes and plain unique constraints (though both are
implemented in the same way internally in RDBMS).

This change adds a new method to Inspection API - get_unique_constraints()
and implements it for SQLite, PostgreSQL and MySQL dialects.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rel_0_9'</title>
<updated>2013-05-29T22:49:27+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-29T22:49:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=3bf77b1b0b18b6091c96e37823bcca87237d5482'/>
<id>3bf77b1b0b18b6091c96e37823bcca87237d5482</id>
<content type='text'>
Conflicts:
	lib/sqlalchemy/dialects/postgresql/hstore.py
	lib/sqlalchemy/util/__init__.py
	lib/sqlalchemy/util/compat.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	lib/sqlalchemy/dialects/postgresql/hstore.py
	lib/sqlalchemy/util/__init__.py
	lib/sqlalchemy/util/compat.py
</pre>
</div>
</content>
</entry>
<entry>
<title>add the py2k symbol from the 0.9 branch to support the hstore change</title>
<updated>2013-05-29T22:36:10+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-29T22:36:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9c746c44a314d357b855108b6e99b773ce52f760'/>
<id>9c746c44a314d357b855108b6e99b773ce52f760</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- repair for py3k</title>
<updated>2013-05-29T22:34:29+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-29T22:29:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f91df04b05e9cfcd043b94fafbaf0eed16774379'/>
<id>f91df04b05e9cfcd043b94fafbaf0eed16774379</id>
<content type='text'>
- fix test
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fix test
</pre>
</div>
</content>
</entry>
<entry>
<title>Unicode support for psycopg2 native hstore implementation</title>
<updated>2013-05-29T22:34:29+00:00</updated>
<author>
<name>Dmitry Mugtasimov</name>
<email>dmugtasimov@gmail.com</email>
</author>
<published>2013-05-28T12:50:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=8fecf4b9cf439eca3926164f1bf6526060febfb9'/>
<id>8fecf4b9cf439eca3926164f1bf6526060febfb9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>  hstores are text, and in py3k they seem to be implcitly unicode.  so</title>
<updated>2013-05-29T22:34:29+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-29T22:08:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f87c9d8167606da7f0bcd5d8e3f2f96be38c7100'/>
<id>f87c9d8167606da7f0bcd5d8e3f2f96be38c7100</id>
<content type='text'>
    add unicode encoding for py2k for the non-native hstore, pullreq for
    native psycopg2 support coming....
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    add unicode encoding for py2k for the non-native hstore, pullreq for
    native psycopg2 support coming....
</pre>
</div>
</content>
</entry>
<entry>
<title>- repair for py3k</title>
<updated>2013-05-29T22:29:12+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-29T22:29:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6c4a61b07a7aec8f6043c3e82eded27dda631cf4'/>
<id>6c4a61b07a7aec8f6043c3e82eded27dda631cf4</id>
<content type='text'>
- fix test
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fix test
</pre>
</div>
</content>
</entry>
<entry>
<title>Unicode support for psycopg2 native hstore implementation</title>
<updated>2013-05-29T22:16:39+00:00</updated>
<author>
<name>Dmitry Mugtasimov</name>
<email>dmugtasimov@gmail.com</email>
</author>
<published>2013-05-28T12:50:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=d02d86a11452b67981e2c9637cedbfc902b237c5'/>
<id>d02d86a11452b67981e2c9637cedbfc902b237c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>  hstores are text, and in py3k they seem to be implcitly unicode.  so</title>
<updated>2013-05-29T22:08:28+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-29T22:08:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=534e05888e1ec7018c03d979df4f34074a61f12b'/>
<id>534e05888e1ec7018c03d979df4f34074a61f12b</id>
<content type='text'>
    add unicode encoding for py2k for the non-native hstore, pullreq for
    native psycopg2 support coming....
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    add unicode encoding for py2k for the non-native hstore, pullreq for
    native psycopg2 support coming....
</pre>
</div>
</content>
</entry>
<entry>
<title>postgresql tests</title>
<updated>2013-05-26T20:39:50+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-26T20:39:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b3654ee37abe7af3d83098cd8de1980369a3fcba'/>
<id>b3654ee37abe7af3d83098cd8de1980369a3fcba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
