]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- REAL has been added to the core types. Supported
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 5 Apr 2011 16:40:55 +0000 (12:40 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 5 Apr 2011 16:40:55 +0000 (12:40 -0400)
commitb462373b461f652ab20085a612ebd777836ac4da
tree23e6a5b67e04549a1e02c5e153217ff39f500f60
parentd34bc7da318978f6d0235e5747e94160959eb276
- REAL has been added to the core types.  Supported
by Postgresql, SQL Server, MySQL, SQLite.  Note
that the SQL Server and MySQL versions, which
add extra arguments, are also still available
from those dialects.  [ticket:2081]
13 files changed:
CHANGES
doc/build/core/types.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/dialects/drizzle/base.py
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/sqlite/__init__.py
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/types.py
test/dialect/test_postgresql.py
test/sql/test_types.py