<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/dialects/postgresql, branch pr/1</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>need to test for (list, tuple) here and not hasattr("__iter__")</title>
<updated>2013-04-26T23:48:43+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-26T23:48:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9a1c505d321b09a8cc4b7e16549f2023b60c247e'/>
<id>9a1c505d321b09a8cc4b7e16549f2023b60c247e</id>
<content type='text'>
since Py3K strings have __iter__
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
since Py3K strings have __iter__
</pre>
</div>
</content>
</entry>
<entry>
<title>- only search in the exception before the first newline, to avoid</title>
<updated>2013-04-23T17:07:36+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-23T17:07:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=177ad548c458a9f1b8d43378fa8f16e349f80ac3'/>
<id>177ad548c458a9f1b8d43378fa8f16e349f80ac3</id>
<content type='text'>
false positives for SQL statements containing certain text
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
false positives for SQL statements containing certain text
</pre>
</div>
</content>
</entry>
<entry>
<title>Opened up the checking for "disconnect" with psycopg2/libpq</title>
<updated>2013-04-22T23:33:39+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-22T23:33:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=00c163bfb13d273e61dcb7ec78ac96338c916de7'/>
<id>00c163bfb13d273e61dcb7ec78ac96338c916de7</id>
<content type='text'>
to check for all the various "disconnect" messages within
the full exception hierarchy.  Specifically the
"closed the connection unexpectedly" message has now been
seen in at least three different exception types.
[ticket:2712]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to check for all the various "disconnect" messages within
the full exception hierarchy.  Specifically the
"closed the connection unexpectedly" message has now been
seen in at least three different exception types.
[ticket:2712]
</pre>
</div>
</content>
</entry>
<entry>
<title>tweak this some more to handle the array being empty again</title>
<updated>2013-04-22T21:24:31+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-22T21:24:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=63c211f42730011760aa8e3f88b2171b23bc0a60'/>
<id>63c211f42730011760aa8e3f88b2171b23bc0a60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- change to [ticket:2681], pre-coerce the array to list</title>
<updated>2013-04-22T21:08:02+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-22T21:08:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=d2f8c83e25ea7abb49315c30518f6415b497f1a7'/>
<id>d2f8c83e25ea7abb49315c30518f6415b497f1a7</id>
<content type='text'>
unconditonally instead so that it works in all cases.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
unconditonally instead so that it works in all cases.
</pre>
</div>
</content>
</entry>
<entry>
<title>The operators for the Postgresql ARRAY type supports</title>
<updated>2013-04-22T20:57:15+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-22T20:57:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=422f4718715ad89346f42caf03bdd2ed745e5a23'/>
<id>422f4718715ad89346f42caf03bdd2ed745e5a23</id>
<content type='text'>
input types of sets, generators, etc. but only when a dimension
is specified for the ARRAY; otherwise, the dialect
needs to peek inside of "arr[0]" to guess how many
dimensions are in use.  If this occurs with a non
list/tuple type, the error message is now informative
and directs to specify a dimension for the ARRAY.
[ticket:2681]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
input types of sets, generators, etc. but only when a dimension
is specified for the ARRAY; otherwise, the dialect
needs to peek inside of "arr[0]" to guess how many
dimensions are in use.  If this occurs with a non
list/tuple type, the error message is now informative
and directs to specify a dimension for the ARRAY.
[ticket:2681]
</pre>
</div>
</content>
</entry>
<entry>
<title>Corrected silly circular import introduced by original "fix".</title>
<updated>2013-03-18T19:40:40+00:00</updated>
<author>
<name>Ben Trofatter</name>
<email>trofatter@google.com</email>
</author>
<published>2013-03-18T19:40:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5b00c6555f67d0837ae64a33077dd87571fc1e0e'/>
<id>5b00c6555f67d0837ae64a33077dd87571fc1e0e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added HSTORE to ischema_names in dialects/postgresql/base.py</title>
<updated>2013-03-18T19:20:37+00:00</updated>
<author>
<name>Ben Trofatter</name>
<email>trofatter@google.com</email>
</author>
<published>2013-03-18T19:20:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=33367fd1ee492fecb279e5b7a2219f236f8027ea'/>
<id>33367fd1ee492fecb279e5b7a2219f236f8027ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added support for Postgresql's traditional SUBSTRING</title>
<updated>2013-03-09T22:40:06+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-03-09T22:40:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a0de45185bf510fca9e237d9191e89391d118591'/>
<id>a0de45185bf510fca9e237d9191e89391d118591</id>
<content type='text'>
function syntax, renders as "SUBSTRING(x FROM y FOR z)"
when regular ``func.substring()`` is used.
Also in 0.7.11.  Courtesy Gunnlaugur Por Briem.
[ticket:2676]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
function syntax, renders as "SUBSTRING(x FROM y FOR z)"
when regular ``func.substring()`` is used.
Also in 0.7.11.  Courtesy Gunnlaugur Por Briem.
[ticket:2676]
</pre>
</div>
</content>
</entry>
<entry>
<title>- remove all compat items that are pre-2.5 (hooray)</title>
<updated>2013-03-09T22:26:16+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-03-09T22:26:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=c8a80e21301791fd4e1caf29ed8cadd40f617765'/>
<id>c8a80e21301791fd4e1caf29ed8cadd40f617765</id>
<content type='text'>
- other cleanup
- don't need compat.decimal, that approach never panned out. hopefully
outside libs aren't pulling it in, they shouldn't be
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- other cleanup
- don't need compat.decimal, that approach never panned out. hopefully
outside libs aren't pulling it in, they shouldn't be
</pre>
</div>
</content>
</entry>
</feed>
