summaryrefslogtreecommitdiff
path: root/test/orm/inheritance/abc_inheritance.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-171/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* - removed test.testing.ORMTest, test.fixtures, and allMike Bayer2009-06-021-2/+4
| | | | dependencies on those.
* - The "clear()", "save()", "update()", "save_or_update()"Mike Bayer2009-01-171-8/+8
| | | | | | Session methods have been deprecated, replaced by "expunge_all()" and "add()". "expunge_all()" has also been added to ScopedSession.
* - comparator_factory is accepted by all MapperProperty constructors. ↵Mike Bayer2008-11-241-2/+2
| | | | | | | | | | | | [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.
* - Improved the behavior of aliased() objects such that they moreMike Bayer2008-11-031-1/+1
| | | | | | | | | | | accurately adapt the expressions generated, which helps particularly with self-referential comparisons. [ticket:1171] - Fixed bug involving primaryjoin/secondaryjoin conditions constructed from class-bound attributes (as often occurs when using declarative), which later would be inappropriately aliased by Query, particularly with the various EXISTS based comparators.
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-1/+1
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-2/+3
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* test suite deprecation rampageJason Kirtland2008-01-091-15/+15
|
* - added a warning when a relation() is added to an inheriting mapper that is ↵Mike Bayer2007-12-091-1/+3
| | | | | | present on a super-mapper; multiple DependencyProcessors are not expected during the flush process - found an uncovered line in uow, was "covered" by one particular breaking test
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-0/+166
maintenance branch in branches/rel_0_3.