<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/sql, branch pr/36</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>The ``.unique`` flag on :class:`.Index` could be produced as ``None``</title>
<updated>2013-10-14T18:53:28+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-14T18:53:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=78a38967c4ad94194308f77f60a922236cd75227'/>
<id>78a38967c4ad94194308f77f60a922236cd75227</id>
<content type='text'>
if it was generated from a :class:`.Column` that didn't specify ``unique``
(where it defaults to ``None``).  The flag will now always be ``True`` or
``False``. [ticket:2825]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
if it was generated from a :class:`.Column` that didn't specify ``unique``
(where it defaults to ``None``).  The flag will now always be ``True`` or
``False``. [ticket:2825]
</pre>
</div>
</content>
</entry>
<entry>
<title>workaround for #2838 here.  still need to figure out why an ENUM test is suddenly hitting this.</title>
<updated>2013-10-14T14:56:11+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-14T14:56:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=dbde70a3a23505ab462da3da8639ee22691a0788'/>
<id>dbde70a3a23505ab462da3da8639ee22691a0788</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Perform fewer dict lookups - tiny microoptimization</title>
<updated>2013-10-14T11:03:46+00:00</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2013-10-14T11:03:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=8869d17f737642e732ad131bb88d7eeafc6fb9e6'/>
<id>8869d17f737642e732ad131bb88d7eeafc6fb9e6</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 default compiler plus those of postgresql, mysql, and</title>
<updated>2013-10-13T00:04:55+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-13T00:04:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9bc9d5c1068be878118202259add3c2e1bcec0cb'/>
<id>9bc9d5c1068be878118202259add3c2e1bcec0cb</id>
<content type='text'>
mssql to ensure that any literal SQL expression values are
rendered directly as literals, instead of as bound parameters,
within a CREATE INDEX statement. [ticket:2742]
- don't need expression_as_ddl(); literal_binds and include_table
take care of this functionality.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
mssql to ensure that any literal SQL expression values are
rendered directly as literals, instead of as bound parameters,
within a CREATE INDEX statement. [ticket:2742]
- don't need expression_as_ddl(); literal_binds and include_table
take care of this functionality.
</pre>
</div>
</content>
</entry>
<entry>
<title>The ``default`` argument of :class:`.Column` now accepts a class</title>
<updated>2013-10-11T20:16:08+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-11T20:16:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=1f1ad557afa4919245c2cb9972099c1504a30a37'/>
<id>1f1ad557afa4919245c2cb9972099c1504a30a37</id>
<content type='text'>
or object method as an argument, in addition to a standalone function;
will properly detect if the "context" argument is accepted or not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
or object method as an argument, in addition to a standalone function;
will properly detect if the "context" argument is accepted or not.
</pre>
</div>
</content>
</entry>
<entry>
<title>The "name" attribute is set on :class:`.Index` before the "attach"</title>
<updated>2013-10-11T19:55:57+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-11T19:55:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9d38ed33400adf3ba8fdf3af49f26de1270bbe23'/>
<id>9d38ed33400adf3ba8fdf3af49f26de1270bbe23</id>
<content type='text'>
events are called, so that attachment events can be used to dynamically
generate a name for the index based on the parent table and/or
columns. [ticket:2835]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
events are called, so that attachment events can be used to dynamically
generate a name for the index based on the parent table and/or
columns. [ticket:2835]
</pre>
</div>
</content>
</entry>
<entry>
<title>A :func:`.select` that is made to refer to itself in its FROM clause,</title>
<updated>2013-10-09T00:06:58+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-09T00:06:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=e74627f827542044c1d2087be95e41d4b1b46f24'/>
<id>e74627f827542044c1d2087be95e41d4b1b46f24</id>
<content type='text'>
typically via in-place mutation, will raise an informative error
message rather than causing a recursion overflow.
[ticket:2815]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
typically via in-place mutation, will raise an informative error
message rather than causing a recursion overflow.
[ticket:2815]
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug where using an annotation such as :func:`.remote` or</title>
<updated>2013-10-08T23:47:13+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-08T23:47:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9df4651fba6d1cd3d2b490f58263cc45a81788f4'/>
<id>9df4651fba6d1cd3d2b490f58263cc45a81788f4</id>
<content type='text'>
:func:`.foreign` on a :class:`.Column` before association with a parent
:class:`.Table` could produce issues related to the parent table not
rendering within joins, due to the inherent copy operation performed
by an annotation. [ticket:2813]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
:func:`.foreign` on a :class:`.Column` before association with a parent
:class:`.Table` could produce issues related to the parent table not
rendering within joins, due to the inherent copy operation performed
by an annotation. [ticket:2813]
</pre>
</div>
</content>
</entry>
<entry>
<title>The erroneous kw arg "schema" has been removed from the :class:`.ForeignKey`</title>
<updated>2013-10-08T23:20:09+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-08T23:20:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f27b7551292fcd0230effc3387b86ac5a544a561'/>
<id>f27b7551292fcd0230effc3387b86ac5a544a561</id>
<content type='text'>
object. this was an accidental commit that did nothing; a warning is raised
in 0.8.3 when this kw arg is used. [ticket:2831]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
object. this was an accidental commit that did nothing; a warning is raised
in 0.8.3 when this kw arg is used. [ticket:2831]
</pre>
</div>
</content>
</entry>
<entry>
<title>- fix propagation of quote flag within _gen_label() so that if the</title>
<updated>2013-10-06T03:47:49+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-10-06T03:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=d79e1d69a6b2d0d1cc18d3d9d0283ef4a77925bc'/>
<id>d79e1d69a6b2d0d1cc18d3d9d0283ef4a77925bc</id>
<content type='text'>
name is already an instance of _anonymous_label(), we don't downgrade
it to a plain quoted_name - fixes regression from [ticket:2812].
[ticket:2834]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
name is already an instance of _anonymous_label(), we don't downgrade
it to a plain quoted_name - fixes regression from [ticket:2812].
[ticket:2834]
</pre>
</div>
</content>
</entry>
</feed>
