summaryrefslogtreecommitdiff
path: root/test/sql/labels.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-05-02 00:21:06 +0000
committerJason Kirtland <jek@discorporate.us>2007-05-02 00:21:06 +0000
commit29c20992dca729f34226c3abb284e44e140b5214 (patch)
tree1f75de3759579de6dd1f854d52a1eb6eb52b70f2 /test/sql/labels.py
parenta19cec2de3e3560cb981c4e7040ebefc5b68846a (diff)
downloadsqlalchemy-29c20992dca729f34226c3abb284e44e140b5214.tar.gz
Removed an unneeded and troublesome subquery test.
Diffstat (limited to 'test/sql/labels.py')
-rw-r--r--test/sql/labels.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/sql/labels.py b/test/sql/labels.py
index 7b9e05715..7d458da06 100644
--- a/test/sql/labels.py
+++ b/test/sql/labels.py
@@ -68,11 +68,6 @@ class LongLabelsTest(testbase.PersistTest):
table1.insert().execute(**{"this_is_the_data_column":"data4"})
def test_subquery(self):
- q = table1.select(table1.c.this_is_the_primarykey_column == 4, use_labels=True)
- x = select([q])
- print x.execute().fetchall()
-
- def test_subquery2(self):
# this is the test that fails if the "max identifier length" is shorter than the
# length of the actual columns created, because the column names get truncated.
# if you try to separate "physical columns" from "labels", and only truncate the labels,