]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- comparator_factory is accepted by all MapperProperty constructors. [ticket:1149]
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Nov 2008 01:14:32 +0000 (01:14 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Nov 2008 01:14:32 +0000 (01:14 +0000)
commit75e8350e4d9c0a2631d11ea5de3dd1d1460690ce
treeac5365ea4cc7fd659199c68f9dc3ed1c63a7f4d7
parente7dd4efb3e26d600c38d6e7467a01b72881a8a0d
- comparator_factory is accepted by all MapperProperty constructors. [ticket:1149]
- added other unit tests as per [ticket:1149]
- rewrote most of the "joined table inheritance" documentation section, removed badly out of
date "polymorphic_fetch" and "select_table" arguments.
- "select_table" raises a deprecation warning.  converted unit tests to not use it.
- removed all references to "ORDER BY table.oid" from mapping docs.
- renamed PropertyLoader to RelationProperty.  Old symbol remains.
- renamed ColumnProperty.ColumnComparator to ColumnProperty.Comparator.  Old symbol remains.
14 files changed:
CHANGES
doc/build/content/mappers.txt
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/properties.py
test/ext/declarative.py
test/orm/compile.py
test/orm/inheritance/abc_inheritance.py
test/orm/inheritance/abc_polymorphic.py
test/orm/inheritance/magazine.py
test/orm/inheritance/polymorph.py
test/orm/inheritance/polymorph2.py
test/orm/inheritance/selects.py
test/orm/mapper.py