Closed
Description
Migrated issue, originally created by Philip Jenvey (@pjenvey)
This is one of the failures on Jython w/ Apple Java 1.5, turned out to be dict ordering. Reproducable on CPython via:
Index: test/sql/test_selectable.py
===================================================================
--- test/sql/test_selectable.py (revision 6210)
+++ test/sql/test_selectable.py (working copy)
@@ -419,7 +419,7 @@
from sqlalchemy.orm.util import polymorphic_union
pjoin = polymorphic_union(
{
- 'm': page_table.join(magazine_page_table),
+ '_m': page_table.join(magazine_page_table),
'c': page_table.join(magazine_page_table).join(classified_page_table),
}, None, 'page_join')
Metadata
Metadata
Assignees
Labels
Type
Projects
Relationships
Development
No branches or pull requests
Activity
sqlalchemy-bot commentedon Jul 28, 2009
Michael Bayer (@zzzeek) wrote:
that is awesome !!
sqlalchemy-bot commentedon Jul 28, 2009
Michael Bayer (@zzzeek) wrote:
b3b0859 b303eb9
sqlalchemy-bot commentedon Jul 28, 2009
Changes by Michael Bayer (@zzzeek):