<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/dialects, 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>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>
<entry>
<title>Merge pull request #3 from bslatkin/master</title>
<updated>2013-06-08T19:11:25+00:00</updated>
<author>
<name>mike bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-08T19:11:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=659baac85e6ca757dd6f26db5e4095a1a3d1ee5c'/>
<id>659baac85e6ca757dd6f26db5e4095a1a3d1ee5c</id>
<content type='text'>
Makes gaerdbms for App Engine use local MySQL server when running in dev_appserver2</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes gaerdbms for App Engine use local MySQL server when running in dev_appserver2</pre>
</div>
</content>
</entry>
<entry>
<title>- changelog for [ticket:2704]</title>
<updated>2013-06-08T18:47:04+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-08T18:47:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a80bb5393484ed2579266c8780ddea1507515e37'/>
<id>a80bb5393484ed2579266c8780ddea1507515e37</id>
<content type='text'>
- use an isinstance() check, concerned a TypeError might be indiscriminate
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- use an isinstance() check, concerned a TypeError might be indiscriminate
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix using of 'mysql_length' for composite indexes</title>
<updated>2013-06-08T17:56:28+00:00</updated>
<author>
<name>Roman Podolyaka</name>
<email>roman.podolyaka@gmail.com</email>
</author>
<published>2013-06-08T17: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=4cc9d482ae8edc2ac60aaf4102bab84148691fed'/>
<id>4cc9d482ae8edc2ac60aaf4102bab84148691fed</id>
<content type='text'>
Currently, one can specify the prefix length for an index
column using 'mysql_length' keyword argument when creating
an Index instance. But in case of composite indexes the
prefix length value is applied only to the last column.

Extend the existing API in way so that 'mysql_length' argument
value can be either:
    - an integer specifying the same prefix length value
      for each column of an index
    - a (column_name --&gt; integer value) mapping specifying
      the prefix length value for each column of an index
      separately

Fixes issue #2704.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, one can specify the prefix length for an index
column using 'mysql_length' keyword argument when creating
an Index instance. But in case of composite indexes the
prefix length value is applied only to the last column.

Extend the existing API in way so that 'mysql_length' argument
value can be either:
    - an integer specifying the same prefix length value
      for each column of an index
    - a (column_name --&gt; integer value) mapping specifying
      the prefix length value for each column of an index
      separately

Fixes issue #2704.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixing the error regex to match numbers with the long suffix, like 1146L</title>
<updated>2013-06-08T09:04:27+00:00</updated>
<author>
<name>Brett Slatkin</name>
<email>brett@haxor.com</email>
</author>
<published>2013-06-08T09:04:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=c8f9831a66728787d8cedf0e1d9d24bfbcb8a559'/>
<id>c8f9831a66728787d8cedf0e1d9d24bfbcb8a559</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>PEP8</title>
<updated>2013-06-08T07:15:37+00:00</updated>
<author>
<name>Brett Slatkin</name>
<email>brett@haxor.com</email>
</author>
<published>2013-06-08T07:15:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=3472083ba9aebf87d334769ccf2c3c96dccb080f'/>
<id>3472083ba9aebf87d334769ccf2c3c96dccb080f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Makes gaerdbms for App Engine use local MySQL server when running under dev_appserver2.</title>
<updated>2013-06-08T07:10:26+00:00</updated>
<author>
<name>Brett Slatkin</name>
<email>brett@haxor.com</email>
</author>
<published>2013-06-08T07:10:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=2dee20448ca5ac2cd8d877b0d67ad49bcb2859e1'/>
<id>2dee20448ca5ac2cd8d877b0d67ad49bcb2859e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove all remaining start/end py2k/py3k blocks</title>
<updated>2013-06-07T21:51:12+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-07T21:51:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=0d9ec9fe840eb71935c2a55c3063620a028e59aa'/>
<id>0d9ec9fe840eb71935c2a55c3063620a028e59aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>When querying the information schema on SQL Server 2000, removed</title>
<updated>2013-06-06T16:52:18+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-06T16:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=555f30d64c23558a13bb95c2c10cb8556b5b21ae'/>
<id>555f30d64c23558a13bb95c2c10cb8556b5b21ae</id>
<content type='text'>
a CAST call that was added in 0.8.1 to help with driver issues,
which apparently is not compatible on 2000.
The CAST remains in place for SQL Server 2005 and greater.
[ticket:2747]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
a CAST call that was added in 0.8.1 to help with driver issues,
which apparently is not compatible on 2000.
The CAST remains in place for SQL Server 2005 and greater.
[ticket:2747]
</pre>
</div>
</content>
</entry>
</feed>
