diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-01-20 12:31:27 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-01-20 12:31:27 +0000 |
commit | a31979937223c68f395ee0704593c9150f10e86b (patch) | |
tree | 38631a67d1116c1014a894f940db540bbcc9845e /test/orm/alltests.py | |
parent | 19de5346c2ce305327025d48ae5ed0d9626598ad (diff) | |
download | sqlalchemy-a31979937223c68f395ee0704593c9150f10e86b.tar.gz |
- tightened down conditions used to locate "relation direction", associating
the "foreignkey" of the relationship with the "primaryjoin". the column match now
must be exact, not just "corresponding". this enables self-referential relationships on a
polymorphic mapper.
- a little bit of improvement to the concept of a "concrete" inheritance mapping, though that concept
is not well fleshed out yet (added test case to support concrete mappers on top of a polymorphic base).
Diffstat (limited to 'test/orm/alltests.py')
-rw-r--r-- | test/orm/alltests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/orm/alltests.py b/test/orm/alltests.py index 3fbdbadfc..ffcdd3d21 100644 --- a/test/orm/alltests.py +++ b/test/orm/alltests.py @@ -28,6 +28,8 @@ def suite(): 'orm.inheritance', 'orm.inheritance2', 'orm.inheritance3', + 'orm.inheritance4', + 'orm.inheritance5', 'orm.single', 'orm.polymorph' ) |