summaryrefslogtreecommitdiff
path: root/test/orm/alltests.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-12-09 05:00:12 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-12-09 05:00:12 +0000
commitacdb90784b84bc66e15e4295dd87ce30734d4025 (patch)
treea7cf6968fc223df720fe58aa1b54551c0f0fea87 /test/orm/alltests.py
parentc9b3f0bcef20794ac7296a855aafe8b75ae7630e (diff)
downloadsqlalchemy-acdb90784b84bc66e15e4295dd87ce30734d4025.tar.gz
- mutable primary key support is added. primary key columns can be
changed freely, and the identity of the instance will change upon flush. In addition, update cascades of foreign key referents (primary key or not) along relations are supported, either in tandem with the database's ON UPDATE CASCADE (required for DB's like Postgres) or issued directly by the ORM in the form of UPDATE statements, by setting the flag "passive_cascades=False".
Diffstat (limited to 'test/orm/alltests.py')
-rw-r--r--test/orm/alltests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/orm/alltests.py b/test/orm/alltests.py
index 059d7a100..3748d3f34 100644
--- a/test/orm/alltests.py
+++ b/test/orm/alltests.py
@@ -17,7 +17,8 @@ def suite():
'orm.generative',
'orm.lazytest1',
'orm.assorted_eager',
-
+
+ 'orm.naturalpks',
'orm.sessioncontext',
'orm.unitofwork',
'orm.session',