<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/dialects/mysql, branch pr/17</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>this comment is ancient</title>
<updated>2013-06-10T00:36:37+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-10T00:36:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=1652491cc6ef44c803e58c0d842818ab7310f498'/>
<id>1652491cc6ef44c803e58c0d842818ab7310f498</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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 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>The ``deferrable`` keyword argument on :class:`.ForeignKey` and</title>
<updated>2013-06-03T22:33:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-03T22:33:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=ada19275299f0105f4aaed5bbe0d373ea33feea6'/>
<id>ada19275299f0105f4aaed5bbe0d373ea33feea6</id>
<content type='text'>
:class:`.ForeignKeyConstraint` will not render the ``DEFERRABLE`` keyword
on the MySQL dialect.  For a long time we left this in place because
a non-deferrable foreign key would act very differently than a deferrable
one, but some environments just disable FKs on MySQL, so we'll be less
opinionated here. [ticket:2721]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
:class:`.ForeignKeyConstraint` will not render the ``DEFERRABLE`` keyword
on the MySQL dialect.  For a long time we left this in place because
a non-deferrable foreign key would act very differently than a deferrable
one, but some environments just disable FKs on MySQL, so we'll be less
opinionated here. [ticket:2721]
</pre>
</div>
</content>
</entry>
<entry>
<title>mysql tests</title>
<updated>2013-05-26T20:32:55+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-26T20:32:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f939abe83034840b6c304df5ea4dfda5e9dc4633'/>
<id>f939abe83034840b6c304df5ea4dfda5e9dc4633</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
