<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/test/engine, branch rel_0_6</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>- some mysql test tweaks ported from 0.7</title>
<updated>2012-05-05T16:47:38+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2012-05-05T16:47:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=eff6c5eb909a589c008950553b4a2b296ce9fe8a'/>
<id>eff6c5eb909a589c008950553b4a2b296ce9fe8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Backported the fix for [ticket:2317] introduced</title>
<updated>2012-04-24T14:55:47+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2012-04-24T14:55:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a6535d17fb41ec5c6bfed07687d9c1e05ff5e91e'/>
<id>a6535d17fb41ec5c6bfed07687d9c1e05ff5e91e</id>
<content type='text'>
in 0.7.4, which ensures that the connection
is in a valid state before attempting to call
rollback()/prepare()/release() on savepoint
and two-phase transactions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in 0.7.4, which ensures that the connection
is in a valid state before attempting to call
rollback()/prepare()/release() on savepoint
and two-phase transactions.
</pre>
</div>
</content>
</entry>
<entry>
<title>backport [ticket:2269] fix from 0.7</title>
<updated>2011-12-06T21:36:36+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-12-06T21:36:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=0ff337f29e3f1060a98338300fcecfc550936558'/>
<id>0ff337f29e3f1060a98338300fcecfc550936558</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title> - Added an informative error message when</title>
<updated>2011-07-21T15:44:41+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-07-21T15:44:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=ba40767d23e4ad488d1e6a2ad3c366036a50ee18'/>
<id>ba40767d23e4ad488d1e6a2ad3c366036a50ee18</id>
<content type='text'>
    ForeignKeyConstraint refers to a column name in
    the parent that is not found.
- add tests for [ticket:2226], as if we hit each @declared_attr
directly with obj.__get__(obj, name) instead of using
getattr(cls, name).  Basic inheritance mechanics are improperly
used in this case, so 2226 is invalid.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    ForeignKeyConstraint refers to a column name in
    the parent that is not found.
- add tests for [ticket:2226], as if we hit each @declared_attr
directly with obj.__get__(obj, name) instead of using
getattr(cls, name).  Basic inheritance mechanics are improperly
used in this case, so 2226 is invalid.
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug whereby if FetchedValue was passed</title>
<updated>2011-04-23T16:38:30+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-04-23T16:38:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=13a370d6f338eb9a3f07ae025d76c9f9aaee363f'/>
<id>13a370d6f338eb9a3f07ae025d76c9f9aaee363f</id>
<content type='text'>
to column server_onupdate, it would not
have its parent "column" assigned, added
test coverage for all column default assignment
patterns.  [ticket:2147]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to column server_onupdate, it would not
have its parent "column" assigned, added
test coverage for all column default assignment
patterns.  [ticket:2147]
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug in QueuePool, SingletonThreadPool whereby</title>
<updated>2011-03-23T03:44:38+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-03-23T03:44:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b81838a46d2016f3806bba1d3c0dea49ce2213c5'/>
<id>b81838a46d2016f3806bba1d3c0dea49ce2213c5</id>
<content type='text'>
connections that were discarded via overflow or periodic
cleanup() were not explicitly closed, leaving garbage
collection to the task instead.   This generally only
affects non-reference-counting backends like Jython
and Pypy.  Thanks to Jaimy Azle for spotting
this.  [ticket:2102]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
connections that were discarded via overflow or periodic
cleanup() were not explicitly closed, leaving garbage
collection to the task instead.   This generally only
affects non-reference-counting backends like Jython
and Pypy.  Thanks to Jaimy Azle for spotting
this.  [ticket:2102]
</pre>
</div>
</content>
</entry>
<entry>
<title>Corrected a bunch of spelling typos.</title>
<updated>2011-03-14T19:22:09+00:00</updated>
<author>
<name>Diana Clarke</name>
<email>diana.joan.clarke@gmail.com</email>
</author>
<published>2011-03-14T19:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b8ef2d4b457328a9b8708dd9452b13c8913aef34'/>
<id>b8ef2d4b457328a9b8708dd9452b13c8913aef34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>  - Column.copy(), as used in table.tometadata(), copies the</title>
<updated>2011-01-30T18:11:50+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-01-30T18:11:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=3ff22879be2a4d43aa6f49bc42835cd76cb5de95'/>
<id>3ff22879be2a4d43aa6f49bc42835cd76cb5de95</id>
<content type='text'>
    'doc' attribute.  [ticket:2028]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    'doc' attribute.  [ticket:2028]
</pre>
</div>
</content>
</entry>
<entry>
<title>- Threadlocal engine returns itself upon begin(),</title>
<updated>2011-01-08T20:33:38+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-01-08T20:33:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f51fa433e93a6aa8df798ec83f81f7f6535e79f9'/>
<id>f51fa433e93a6aa8df798ec83f81f7f6535e79f9</id>
<content type='text'>
begin_nested(); engine then implements contextmanager
methods to allow the "with" statement. [ticket:2004]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
begin_nested(); engine then implements contextmanager
methods to allow the "with" statement. [ticket:2004]
</pre>
</div>
</content>
</entry>
<entry>
<title>- CheckConstraint will copy its 'initially', 'deferrable',</title>
<updated>2011-01-08T20:24:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-01-08T20:24:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=dbd79ce35c56571a87a04e63fd662f017b0bef03'/>
<id>dbd79ce35c56571a87a04e63fd662f017b0bef03</id>
<content type='text'>
and '_create_rule' attributes within a copy()/tometadata()
[ticket:2000]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and '_create_rule' attributes within a copy()/tometadata()
[ticket:2000]
</pre>
</div>
</content>
</entry>
</feed>
