summaryrefslogtreecommitdiff
path: root/test/sql/selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-07-10 07:11:56 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-07-10 07:11:56 +0000
commitd947d6b79db6c1aad4b12668252c1ee181641923 (patch)
treee13b68c9994fcf4957338077eedbe05c1c3406ab /test/sql/selectable.py
parentbe29010e292739ca3545315eb2e6a9243aa53e1a (diff)
downloadsqlalchemy-d947d6b79db6c1aad4b12668252c1ee181641923.tar.gz
changed "_source_column" to simpler "_distance"
Diffstat (limited to 'test/sql/selectable.py')
-rwxr-xr-xtest/sql/selectable.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sql/selectable.py b/test/sql/selectable.py
index 340c55837..853821f9a 100755
--- a/test/sql/selectable.py
+++ b/test/sql/selectable.py
@@ -85,6 +85,8 @@ class SelectableTest(testbase.AssertMixin):
print ["%d %s" % (id(c),c.key) for c in u.c]
c = u.corresponding_column(s1.c.table1_col2)
print "%d %s" % (id(c), c.key)
+ print id(u.corresponding_column(s1.c.table1_col2).table)
+ print id(u.c.col2.table)
assert u.corresponding_column(s1.c.table1_col2) is u.c.col2
assert u.corresponding_column(s2.c.table2_col2) is u.c.col2