<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/test/dialect/test_mssql.py, branch pr/7</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>When querying the information schema on SQL Server 2000, removed</title>
<updated>2013-06-06T16:52:18+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-06-06T16:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=555f30d64c23558a13bb95c2c10cb8556b5b21ae'/>
<id>555f30d64c23558a13bb95c2c10cb8556b5b21ae</id>
<content type='text'>
a CAST call that was added in 0.8.1 to help with driver issues,
which apparently is not compatible on 2000.
The CAST remains in place for SQL Server 2005 and greater.
[ticket:2747]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
a CAST call that was added in 0.8.1 to help with driver issues,
which apparently is not compatible on 2000.
The CAST remains in place for SQL Server 2005 and greater.
[ticket:2747]
</pre>
</div>
</content>
</entry>
<entry>
<title>mssql test fixes</title>
<updated>2013-05-26T23:49:50+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-26T23:49:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=2e8816c88f4746dbf34f1815696d083ba2e2d738'/>
<id>2e8816c88f4746dbf34f1815696d083ba2e2d738</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>merge default</title>
<updated>2013-05-15T19:47:11+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-15T19:47:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=2e75f668f3844a90c2d15e5bd36f927b329f47a6'/>
<id>2e75f668f3844a90c2d15e5bd36f927b329f47a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Regression from this ticket caused the unsupported keyword</title>
<updated>2013-05-15T19:46:29+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-05-15T19:46:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=cfb0f9ca14f82c9ba06c4d5cbc992f821eb2234e'/>
<id>cfb0f9ca14f82c9ba06c4d5cbc992f821eb2234e</id>
<content type='text'>
"true" to render, added logic to convert this to 1/0
for SQL server.
[ticket:2682]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"true" to render, added logic to convert this to 1/0
for SQL server.
[ticket:2682]
</pre>
</div>
</content>
</entry>
<entry>
<title>- the raw 2to3 run</title>
<updated>2013-04-27T23:53:57+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-27T23:53:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=4b614b9b35cd2baddb7ca67c04bee5d70ec6a172'/>
<id>4b614b9b35cd2baddb7ca67c04bee5d70ec6a172</id>
<content type='text'>
- went through examples/ and cleaned out excess list() calls
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- went through examples/ and cleaned out excess list() calls
</pre>
</div>
</content>
</entry>
<entry>
<title>- this pymssql test needs to be against the pymssql dialect</title>
<updated>2013-04-18T21:41:30+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-04-18T21:41:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=0790efcf87a268fd8bc810b711fe2b9760bcf1e6'/>
<id>0790efcf87a268fd8bc810b711fe2b9760bcf1e6</id>
<content type='text'>
- Part of a longer series of fixes needed for pyodbc+
      mssql, a CAST to NVARCHAR(max) has been added to the bound
      parameter for the table name and schema name in all information schema
      queries to avoid the issue of comparing NVARCHAR to NTEXT,
      which seems to be rejected by the ODBC driver in some cases,
      such as FreeTDS (0.91 only?) plus unicode bound parameters being passed.
      The issue seems to be specific to the SQL Server information
      schema tables and the workaround is harmless for those cases
      where the problem doesn't exist in the first place.
[ticket:2355]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Part of a longer series of fixes needed for pyodbc+
      mssql, a CAST to NVARCHAR(max) has been added to the bound
      parameter for the table name and schema name in all information schema
      queries to avoid the issue of comparing NVARCHAR to NTEXT,
      which seems to be rejected by the ODBC driver in some cases,
      such as FreeTDS (0.91 only?) plus unicode bound parameters being passed.
      The issue seems to be specific to the SQL Server information
      schema tables and the workaround is harmless for those cases
      where the problem doesn't exist in the first place.
[ticket:2355]
</pre>
</div>
</content>
</entry>
<entry>
<title>- test all pymssql messages here</title>
<updated>2013-03-29T16:09:11+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-03-29T16:09:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=7dff6f6d490528f5e88493cdf4b14d3136b40d3c'/>
<id>7dff6f6d490528f5e88493cdf4b14d3136b40d3c</id>
<content type='text'>
- changelog
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- changelog
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in sontek/sqlalchemy/add_better_disconnect_checks (pull request #47)</title>
<updated>2013-03-29T16:03:17+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2013-03-29T16:03:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=7aea1bfc8edaa028a557d5c358891e6104640b8b'/>
<id>7aea1bfc8edaa028a557d5c358891e6104640b8b</id>
<content type='text'>
Add disconnect check on timeouts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add disconnect check on timeouts
</pre>
</div>
</content>
</entry>
<entry>
<title>Make MonkeyPatchedBinaryTest not fail on Python 2.5 (which doesn't have</title>
<updated>2013-03-21T05:37:05+00:00</updated>
<author>
<name>Marc Abramowitz</name>
<email>marc@marc-abramowitz.com</email>
</author>
<published>2013-03-21T05:37:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f79b41243dd36214c583ce152132450def3a673e'/>
<id>f79b41243dd36214c583ce152132450def3a673e</id>
<content type='text'>
the `b` notation for byte string literals)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the `b` notation for byte string literals)
</pre>
</div>
</content>
</entry>
<entry>
<title>Make MonkeyPatchedBinaryTest only run when using mssql. Prevents failed</title>
<updated>2013-03-18T22:29:54+00:00</updated>
<author>
<name>Marc Abramowitz</name>
<email>marc@marc-abramowitz.com</email>
</author>
<published>2013-03-18T22:29:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=e90b2ccdfbc4f30e04094fcbf574f30dd076efb4'/>
<id>e90b2ccdfbc4f30e04094fcbf574f30dd076efb4</id>
<content type='text'>
tests when using a different dialect.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tests when using a different dialect.
</pre>
</div>
</content>
</entry>
</feed>
