diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-03-17 17:48:29 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-03-17 17:48:29 -0400 |
commit | 065fcbd9d2b463920d439c20d99a5a1cd7f216ed (patch) | |
tree | 2230349df4cc7bc884f128e2c463c2e334152b7e /test/perf/sessions.py | |
parent | 95c0214356a55b6bc051d2b779e54d6de7b0b22e (diff) | |
download | sqlalchemy-065fcbd9d2b463920d439c20d99a5a1cd7f216ed.tar.gz |
- The official name for the relation() function is now
relationship(), to eliminate confusion over the relational
algebra term. relation() however will remain available
in equal capacity for the foreseeable future. [ticket:1740]
Diffstat (limited to 'test/perf/sessions.py')
-rw-r--r-- | test/perf/sessions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/perf/sessions.py b/test/perf/sessions.py index 0d4cc1f01..4210732d6 100644 --- a/test/perf/sessions.py +++ b/test/perf/sessions.py @@ -42,7 +42,7 @@ class SessionTest(TestBase, AssertsExecutionResults): pass mapper(T1, t1, properties={ - 't2s':relation(T2, backref='t1') + 't2s':relationship(T2, backref='t1') }) mapper(T2, t2) |