<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/test/sql/functions.py, branch improve_toc</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>- unit tests have been migrated from unittest to nose.</title>
<updated>2009-06-10T21:18:24+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2009-06-10T21:18:24+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=45cec095b4904ba71425d2fe18c143982dd08f43'/>
<id>45cec095b4904ba71425d2fe18c143982dd08f43</id>
<content type='text'>
See README.unittests for information on how to run
the tests.  [ticket:970]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See README.unittests for information on how to run
the tests.  [ticket:970]
</pre>
</div>
</content>
</entry>
<entry>
<title>extract() is now dialect-sensitive and supports SQLite and others.</title>
<updated>2009-03-30T20:41:48+00:00</updated>
<author>
<name>Jason Kirtland</name>
<email>jek@discorporate.us</email>
</author>
<published>2009-03-30T20:41:48+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=aca84bebb091a51ceeb911249c366e17b954826a'/>
<id>aca84bebb091a51ceeb911249c366e17b954826a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed missing _label attribute on Function object, others</title>
<updated>2009-02-01T18:20:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2009-02-01T18:20:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=e39b98ca7ba8f791f5a359132adf3c9ff8e715c1'/>
<id>e39b98ca7ba8f791f5a359132adf3c9ff8e715c1</id>
<content type='text'>
when used in a select() with use_labels (such as when used
in an ORM column_property()).  [ticket:1302]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
when used in a select() with use_labels (such as when used
in an ORM column_property()).  [ticket:1302]
</pre>
</div>
</content>
</entry>
<entry>
<title>- Added func.min(), func.max(), func.sum() as "generic functions",</title>
<updated>2008-09-08T03:51:47+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2008-09-08T03:51:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=58c5bb7fc104da26cd1797d9680a810a3b79ab0a'/>
<id>58c5bb7fc104da26cd1797d9680a810a3b79ab0a</id>
<content type='text'>
which basically allows for their return type to be determined
automatically.  Helps with dates on SQLite, decimal types,
others. [ticket:1160]

- added decimal.Decimal as an "auto-detect" type; bind parameters
and generic functions will set their type to Numeric when a
Decimal is used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
which basically allows for their return type to be determined
automatically.  Helps with dates on SQLite, decimal types,
others. [ticket:1160]

- added decimal.Decimal as an "auto-detect" type; bind parameters
and generic functions will set their type to Numeric when a
Decimal is used.
</pre>
</div>
</content>
</entry>
<entry>
<title>- The 'length' argument to all Numeric types has been renamed</title>
<updated>2008-08-24T19:52:54+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2008-08-24T19:52:54+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6f60e768837f6b91a75dc2d62dbd215471bf09f7'/>
<id>6f60e768837f6b91a75dc2d62dbd215471bf09f7</id>
<content type='text'>
to 'scale'.  'length' is deprecated and is still accepted
with a warning. [ticket:827]
- The 'length' argument to MSInteger, MSBigInteger, MSTinyInteger,
MSSmallInteger and MSYear has been renamed to 'display_width'.
[ticket:827]
- mysql._Numeric now consumes 'unsigned' and 'zerofill' from
the given kw, so that the same kw can be passed along to Numeric
and allow the 'length' deprecation logic to still take effect
- added testlib.engines.all_dialects() to return a dialect for
every db module
- informix added to sqlalchemy.databases.__all__.  Since other
"experimental" dbs like access and sybase are there, informix
should be as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to 'scale'.  'length' is deprecated and is still accepted
with a warning. [ticket:827]
- The 'length' argument to MSInteger, MSBigInteger, MSTinyInteger,
MSSmallInteger and MSYear has been renamed to 'display_width'.
[ticket:827]
- mysql._Numeric now consumes 'unsigned' and 'zerofill' from
the given kw, so that the same kw can be passed along to Numeric
and allow the 'length' deprecation logic to still take effect
- added testlib.engines.all_dialects() to return a dialect for
every db module
- informix added to sqlalchemy.databases.__all__.  Since other
"experimental" dbs like access and sybase are there, informix
should be as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>- func.count() with no argument emits COUNT(*)</title>
<updated>2008-07-24T21:36:16+00:00</updated>
<author>
<name>Jason Kirtland</name>
<email>jek@discorporate.us</email>
</author>
<published>2008-07-24T21:36:16+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b403f156fedf7f1c3da34818f5ebe9debab481d7'/>
<id>b403f156fedf7f1c3da34818f5ebe9debab481d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- changed char_length() to use a fake, neutral "generic function"</title>
<updated>2008-05-19T22:46:14+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2008-05-19T22:46:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=b3102a097a3ef95430a8bad65b3f171c45dd6cc2'/>
<id>b3102a097a3ef95430a8bad65b3f171c45dd6cc2</id>
<content type='text'>
- assert_compile() reports the dialect in use
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- assert_compile() reports the dialect in use
</pre>
</div>
</content>
</entry>
<entry>
<title>r4695 merged to trunk; trunk now becomes 0.5.</title>
<updated>2008-05-09T16:34:10+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2008-05-09T16:34:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=4a6afd469fad170868554bf28578849bf3dfd5dd'/>
<id>4a6afd469fad170868554bf28578849bf3dfd5dd</id>
<content type='text'>
0.4 development continues at /sqlalchemy/branches/rel_0_4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
0.4 development continues at /sqlalchemy/branches/rel_0_4
</pre>
</div>
</content>
</entry>
<entry>
<title>- fixed SQL function truncation of trailing underscores</title>
<updated>2008-03-25T17:25:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2008-03-25T17:25:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=fc2cf22038e575670ee2edc890f8dfbc07d9bfa7'/>
<id>fc2cf22038e575670ee2edc890f8dfbc07d9bfa7</id>
<content type='text'>
[ticket:996]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ticket:996]
</pre>
</div>
</content>
</entry>
<entry>
<title>- Added generic func.random (non-standard SQL)</title>
<updated>2008-03-25T16:51:29+00:00</updated>
<author>
<name>Jason Kirtland</name>
<email>jek@discorporate.us</email>
</author>
<published>2008-03-25T16:51:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=92a5df77538069efd9f8cfc14cf83807ce43c288'/>
<id>92a5df77538069efd9f8cfc14cf83807ce43c288</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
