<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib, branch pr/221</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>Add support for MySQL JSON</title>
<updated>2015-12-09T22:10:15+00:00</updated>
<author>
<name>Stephen Rauch</name>
<email>stephen.rauch+github@gmail.com</email>
</author>
<published>2015-12-09T22:10:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b42ce1487e53ede01f4d37b3c71a629b554caeb6'/>
<id>b42ce1487e53ede01f4d37b3c71a629b554caeb6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug in MySQL reflection where the "fractional sections portion"</title>
<updated>2015-12-07T22:24:09+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-12-07T22:24:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=3f42743d6aa1326a80a0ed720a92266aa5fbf209'/>
<id>3f42743d6aa1326a80a0ed720a92266aa5fbf209</id>
<content type='text'>
of the :class:`.mysql.DATETIME`, :class:`.mysql.TIMESTAMP` and
:class:`.mysql.TIME` types would be incorrectly placed into the
``timestamp`` attribute, which is unused by MySQL, instead of the
``fsp`` attribute.
fixes #3602
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
of the :class:`.mysql.DATETIME`, :class:`.mysql.TIMESTAMP` and
:class:`.mysql.TIME` types would be incorrectly placed into the
``timestamp`` attribute, which is unused by MySQL, instead of the
``fsp`` attribute.
fixes #3602
</pre>
</div>
</content>
</entry>
<entry>
<title>- write a real inline documentation section for from_self(),</title>
<updated>2015-12-07T17:36:36+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-12-07T17:36:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=8fa62d652b8d1834e23ba36e56c7bd711cc37e37'/>
<id>8fa62d652b8d1834e23ba36e56c7bd711cc37e37</id>
<content type='text'>
building on the example of query.join().  Ideally all the methods
in Query would have this kind of thing.  fixes #3544
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
building on the example of query.join().  Ideally all the methods
in Query would have this kind of thing.  fixes #3544
</pre>
</div>
</content>
</entry>
<entry>
<title>- fix loading.py merge_result for new _merge() argument</title>
<updated>2015-12-04T22:31:47+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-12-04T22:31:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=012f3852bf0356c30eabab06c81f6c35a8fa1d89'/>
<id>012f3852bf0356c30eabab06c81f6c35a8fa1d89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- The :meth:`.Session.merge` method now tracks pending objects by</title>
<updated>2015-12-04T16:52:16+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-12-04T16:52:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=3ec9b9f6b601b8ef69d4978c7182e8efedefd191'/>
<id>3ec9b9f6b601b8ef69d4978c7182e8efedefd191</id>
<content type='text'>
primary key before emitting an INSERT, and merges distinct objects with
duplicate primary keys together as they are encountered, which is
essentially semi-deterministic at best.   This behavior
matches what happens already with persistent objects.
fixes #3601
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
primary key before emitting an INSERT, and merges distinct objects with
duplicate primary keys together as they are encountered, which is
essentially semi-deterministic at best.   This behavior
matches what happens already with persistent objects.
fixes #3601
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed issue where post_update on a many-to-one relationship would</title>
<updated>2015-12-02T17:13:57+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-12-02T17:13:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=935bc34dc50d5e4bdf181a8287d6e4cdbde073d0'/>
<id>935bc34dc50d5e4bdf181a8287d6e4cdbde073d0</id>
<content type='text'>
fail to emit an UPDATE in the case where the attribute were set to
None and not previously loaded.
fixes #3599
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fail to emit an UPDATE in the case where the attribute were set to
None and not previously loaded.
fixes #3599
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug where CREATE TABLE with a no-column table, but a constraint</title>
<updated>2015-12-02T00:03:03+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-12-02T00:03:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9695faf32981406b12a6468b98d5c9b673f8e219'/>
<id>9695faf32981406b12a6468b98d5c9b673f8e219</id>
<content type='text'>
such as a CHECK constraint would render an erroneous comma in the
definition; this scenario can occur such as with a Postgresql
INHERITS table that has no columns of its own.
fixes #3598
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
such as a CHECK constraint would render an erroneous comma in the
definition; this scenario can occur such as with a Postgresql
INHERITS table that has no columns of its own.
fixes #3598
</pre>
</div>
</content>
</entry>
<entry>
<title>- Added the error "20006: Write to the server failed" to the list</title>
<updated>2015-11-30T18:15:40+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-11-30T18:15:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=ab6946769742602e40fb9ed9dde5f642885d1906'/>
<id>ab6946769742602e40fb9ed9dde5f642885d1906</id>
<content type='text'>
of disconnect errors for the pymssql driver, as this has been observed
to render a connection unusable.
fixes #3585
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
of disconnect errors for the pymssql driver, as this has been observed
to render a connection unusable.
fixes #3585
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/pr/216'</title>
<updated>2015-11-30T18:02:39+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-11-30T18:02:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9c2c2475637d47f5a49e1457174308e7b98a4be8'/>
<id>9c2c2475637d47f5a49e1457174308e7b98a4be8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/pr/215'</title>
<updated>2015-11-30T17:57:47+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-11-30T17:57:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a09fc9740d047a11d0f464cc79d888a9c431813b'/>
<id>a09fc9740d047a11d0f464cc79d888a9c431813b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
