summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-09-05 14:44:58 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-09-05 14:44:58 -0400
commit703ce7f1791c1143eb983c38e3bd627984ea1953 (patch)
treed52e3cc51041b96985e96b58f2340be233fc3600 /test/sql/test_query.py
parent1f65ac6679298c7f18e8ff3b13d6694e357ed5d5 (diff)
downloadsqlalchemy-703ce7f1791c1143eb983c38e3bd627984ea1953.tar.gz
- rewrote the "connections" section
- improved pool docs - typos etc. - ClauseElement.execute() and scalar() make no sense - these are depreacted. The official home is Executable. - alias() is not executable, allowing it is sloppy so this goes under the deprecated umbrella
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index 0a496906d..d78ddbb57 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -743,6 +743,7 @@ class QueryTest(TestBase):
r = testing.db.execute('select user_name from query_users').first()
eq_(len(r), 1)
+ @testing.uses_deprecated(r'.*which subclass Executable')
def test_cant_execute_join(self):
try:
users.join(addresses).execute()