]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The 'length' argument to all Numeric types has been renamed
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 24 Aug 2008 19:52:54 +0000 (19:52 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 24 Aug 2008 19:52:54 +0000 (19:52 +0000)
commit6f60e768837f6b91a75dc2d62dbd215471bf09f7
tree3db99506d1901e0e809821816d899e8a81a8d370
parente01e972ac305d634cac3d63de6c5fa6688cd56c5
- The 'length' argument to all Numeric types has been renamed
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.
17 files changed:
CHANGES
lib/sqlalchemy/databases/__init__.py
lib/sqlalchemy/databases/firebird.py
lib/sqlalchemy/databases/informix.py
lib/sqlalchemy/databases/maxdb.py
lib/sqlalchemy/databases/mssql.py
lib/sqlalchemy/databases/mysql.py
lib/sqlalchemy/databases/oracle.py
lib/sqlalchemy/databases/postgres.py
lib/sqlalchemy/databases/sqlite.py
lib/sqlalchemy/databases/sybase.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util.py
test/dialect/mysql.py
test/sql/functions.py
test/sql/testtypes.py
test/testlib/engines.py