]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- fix the labeled column with column_expression() issue, finishes [ticket:1534]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Aug 2012 04:54:00 +0000 (00:54 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Aug 2012 04:54:00 +0000 (00:54 -0400)
commit515811eb582cc6d44513e19af66bf8376fd541bd
tree4f602df9be8e5cf8e2636c06dd0c160f70c7cffd
parentd2ed308da38af01e23d9f4085f6b8f973994b29a
- fix the labeled column with column_expression() issue, finishes [ticket:1534]
- epic documentation sweep for new operator system, making ORM links consistent
and complete, full documentation and examples for type/SQL expression feature
- type_coerce() explicitly accepts BindParamClause objects
- change UserDefinedType to coerce the other side to itself by default as this
is much more likely what's desired
- make coerce_compared_type() fully public on all types
- have profiling run the test no matter what so that the test_zoomarks don't fail
when callcounts are missing
16 files changed:
doc/build/core/tutorial.rst
doc/build/core/types.rst
doc/build/orm/examples.rst
doc/build/orm/mapper_config.rst
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/descriptor_props.py
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/operators.py
lib/sqlalchemy/types.py
test/lib/profiles.txt
test/lib/profiling.py
test/sql/test_type_expressions.py
test/sql/test_types.py